edgeVisible
edgeVisible: boolean[]
Booleans indicating visibility of corresponding edges.
- The
edgeVisible
array is parallel to thepointIndex
array. - The visibility flag applies to the edge whose start vertex index appears in the same place in the
pointIndex
array. - For example, consider the mesh with 2 triangular facets given by
pointIndex = [1,0,2, 1,2,3]
. If the triangles' shared edge is hidden, then the mesh hasedgeVisible = [true,true,false, false,true,true]
.
Defined in
- polyface/PolyfaceData.ts Line 78
Last Updated: 21 November, 2024
Found something wrong, missing, or unclear on this page?Raise an issue in our repo.