Method InverseTransformPoint
InverseTransformPoint(float3)
Transforms a point by the inverse of this transform.
Declaration
public float3 InverseTransformPoint(float3 point)
Parameters
Type | Name | Description |
---|---|---|
float3 | point | The point to be transformed. |
Returns
Type | Description |
---|---|
float3 | The result of applying the inverse of this transform to the input point. |
Remarks
Throws if the Scale field is zero. To inverse-transform a directional vector, use InverseTransformDirection(float3). To apply the forward transform instead, use TransformPoint(float3).
Examples