_facetStart Protected
_facetStart: number[]
Start indices of all facets of the polyface.
- Each element is an index to the
this.data.pointIndex
array entry for a specific facet. - The facet count is
_facetStart.length - 1
. - The face loop for the i_th facet consists of the entries in
this.data.pointIndex
at indices_facetStart[i]
up to (but not including)_facetStart[i + 1]
. - Note the array is initialized with one entry (value 0).
Defined in
- polyface/Polyface.ts Line 117
Last Updated: 21 November, 2024
Found something wrong, missing, or unclear on this page?Raise an issue in our repo.