volumeslices
VolumeSlices
volumeslices(x, y, z, v)
Draws heatmap slices of the volume v
Attributes
Available attributes and their defaults for
MakieCore.Combined{Makie.volumeslices, T} where T
are:
bbox_color RGBA{Float32}(0.5f0,0.5f0,0.5f0,0.5f0)
bbox_visible true
colormap :viridis
colorrange MakieCore.Automatic()
depth_shift 0.0f0
diffuse Float32[0.4, 0.4, 0.4]
highclip MakieCore.Automatic()
inspectable true
interpolate false
levels 1
linewidth 0.0
lowclip MakieCore.Automatic()
nan_color :transparent
overdraw false
shininess 32.0f0
space :data
specular Float32[0.2, 0.2, 0.2]
ssao false
transparency false
visible true
Examples
using GLMakie
fig = Figure()
ax = LScene(fig[1, 1], show_axis=false)
x = LinRange(0, π, 50)
y = LinRange(0, 2π, 100)
z = LinRange(0, 3π, 150)
sgrid = SliderGrid(
fig[2, 1],
(label = "yz plane - x axis", range = 1:length(x)),
(label = "xz plane - y axis", range = 1:length(y)),
(label = "xy plane - z axis", range = 1:length(z)),
)
lo = sgrid.layout
nc = ncols(lo)
vol = [cos(X)*sin(Y)*sin(Z) for X ∈ x, Y ∈ y, Z ∈ z]
plt = volumeslices!(ax, x, y, z, vol)
# connect sliders to `volumeslices` update methods
sl_yz, sl_xz, sl_xy = sgrid.sliders
on(sl_yz.value) do v; plt[:update_yz][](v) end
on(sl_xz.value) do v; plt[:update_xz][](v) end
on(sl_xy.value) do v; plt[:update_xy][](v) end
set_close_to!(sl_yz, .5length(x))
set_close_to!(sl_xz, .5length(y))
set_close_to!(sl_xy, .5length(z))
# add toggles to show/hide heatmaps
hmaps = [plt[Symbol(:heatmap_, s)][] for s ∈ (:yz, :xz, :xy)]
toggles = [Toggle(lo[i, nc + 1], active = true) for i ∈ 1:length(hmaps)]
map(zip(hmaps, toggles)) do (h, t)
connect!(h.visible, t.active)
end
# cam3d!(ax.scene, projectiontype=Makie.Orthographic)
fig
© Makie.jl. Last modified: August 04, 2022. Website built with
Franklin.jl
and the
Julia programming language
.
These docs were autogenerated using Makie: v0.17.13, GLMakie: v0.6.13, CairoMakie: v0.8.13, WGLMakie: v0.6.13