edgeIndexToFaceLoop Method
Given an edgeIndex (index into data.pointIndex
), return the range of the edgeIndices of the containing facet.
- If an edge with edgeIndex
k
is found in the facet with facetIndexf
, then the returned ranger
satisfiesr.low = this.facetIndex0(f) <= k < this.facetIndex1(f) = r.high
and can be used to iterate the facet's face loop. See facetIndex0.
edgeIndexToFaceLoop(k: number): undefined | Range1d
Parameter | Type | Description |
---|---|---|
k | number |
Returns - undefined | Range1d
Defined in
- polyface/Polyface.ts Line 157
Last Updated: 04 April, 2025
Found something wrong, missing, or unclear on this page?Raise an issue in our repo.