Makie - Quadrilater-based mesh visualization

I think you have to do that manually with something like

ls = Point2f0[]
for f in _faces
    push!(ls,
        points[f[1]], points[f[2]],
        points[f[2]], points[f[3]],
        points[f[3]], points[f[4]],
        points[f[4]], points[f[1]],
    )
end
linesegments(ls)
3 Likes