wireframe
wireframe(x, y, z)
wireframe(positions)
wireframe(mesh)
Draws a wireframe, either interpreted as a surface or as a mesh.
Attributes
Available attributes and their defaults for Wireframe
are:
alpha 1.0
color :black
colormap :viridis
colorrange MakieCore.Automatic()
colorscale identity
cycle [:color]
depth_shift -1.0f-5
highclip MakieCore.Automatic()
inspectable true
linestyle "nothing"
linewidth 1.5
lowclip MakieCore.Automatic()
nan_color :transparent
overdraw false
space :data
ssao false
transparency false
visible true
Examples
using GLMakie
x, y = collect(-8:0.5:8), collect(-8:0.5:8)
z = [sinc(√(X^2 + Y^2) / π) for X ∈ x, Y ∈ y]
wireframe(x, y, z, axis=(type=Axis3,), color=:black)
© Makie.jl. Last modified: October 31, 2023. Website built with Franklin.jl and the Julia programming language.
These docs were autogenerated using Makie: v0.19.12, GLMakie: v0.8.12, CairoMakie: v0.10.12, WGLMakie: v0.8.16