You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to mesh an arbitrary polygons from 3d points. But if provided points are in CW direction, mesh() returns empty or with missing geometry faces. I guess it's because decompose() function returns empty array:
tri_ccw = Point{3,Float64}[(0,0,0,), (1,0,0), (0,1,0)] # points in ccw direction
tri_cw =reverse(tri_ccw) # points in cw direction@showlength(decompose(TriangleFace{Int}, tri_ccw)) ==1# <- as expected@showlength(decompose(TriangleFace{Int}, tri_cw )) ==1# <- decompose returns with empty array
The text was updated successfully, but these errors were encountered:
I wanted to mesh an arbitrary polygons from 3d points. But if provided points are in CW direction,
mesh()
returns empty or with missing geometry faces. I guess it's becausedecompose()
function returns empty array:The text was updated successfully, but these errors were encountered: