Skip to content

Instantly share code, notes, and snippets.

@CarpeNecopinum
Last active November 22, 2019 08:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CarpeNecopinum/2b7a58541bd2bd9f6fbdc84021ad91bb to your computer and use it in GitHub Desktop.
Save CarpeNecopinum/2b7a58541bd2bd9f6fbdc84021ad91bb to your computer and use it in GitHub Desktop.
Makie.jl things I always forget
# Display image without coordinate axes and at correct aspect ratio:
Makie.image(clamp.(dep, 0.0, 15.0), show_axis = false, scale_plot = false)
# Show plot window - old way
display(AbstractPlotting.PlotDisplay(), scene)
# Show plot window - very old and also new way
display(scene) # or just
scene
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment