multiplyInversePoint3d Method
Multiply the point by the inverse Transform.
- If for a point
pwe haveTp = M*p + o = q, thenp = MInverse*(q - o) = TInverse qsoTInverseTransform has matrix partMInverseand origin part-MInverse*o. - Return as a new point or in the optional
result. - Returns
undefinedif thematrixpart if this Transform is singular.
multiplyInversePoint3d(point: XYAndZ, result?: Point3d): Point3d | undefined
| Parameter | Type | Description |
|---|---|---|
| point | XYAndZ | |
| result | Point3d |
Returns - Point3d | undefined
Defined in
- geometry3d/Transform.ts Line 508
Last Updated: 27 May, 2026
Found something wrong, missing, or unclear on this page? Raise an issue in our repo.