interpolateUncheckedIndexIndex Method
Interpolate the points at the given indices.
- This method does not check for index validity. Use interpolateIndexIndex to have validity test.
interpolateUncheckedIndexIndex(index0: number, fraction: number, index1: number, result?: Point3d): Point3d
| Parameter | Type | Description |
|---|---|---|
| index0 | number | index of point p0 within the array. |
| fraction | number | fraction f such that returned point is p0 + f * (p1 - p0). |
| index1 | number | index of point p1 within the array. |
| result | Point3d | optional caller-allocated result to fill and return. |
Returns - Point3d
Defined in
- geometry3d/IndexedXYZCollection.ts Line 415
Last Updated: 13 December, 2025
Found something wrong, missing, or unclear on this page? Raise an issue in our repo.