multiplyInversePoint3dArrayInPlace Method

Multiply each point in the array by the inverse of this Transform in place.

  • For a transform T = [M o] the inverse transform T' = [M' -M'o] exists if and only if M has an inverse M'. Indeed, for any point p, we have T'Tp = T'(Mp + o) = M'(Mp + o) - M'o = M'Mp + M'o - M'o = p.
  • Returns true if the matrix part if this Transform is invertible and false if singular.

multiplyInversePoint3dArrayInPlace(points: Point3d[]): boolean

Parameter Type Description
points Point3d[]  

Returns - boolean

Defined in

Last Updated: 16 April, 2024