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