Transform.CreateReflection
Method
Description:
Creates a transform that represents a reflection across the given plane.
Creates a transform that represents a reflection across the given plane.
Examples
private Transform Reflect(ReferencePlane refPlane)
{
Transform mirTrans = Transform.CreateReflection(refPlane.GetPlane());
return mirTrans;
}
Parameters
| Parameter | Type | Description |
|---|---|---|
| plane | Plane | The plane. |
Return Value
| Type | Description |
|---|---|
| Transform | The new transform. |
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | A non-optional argument was NULL |