<Code Lib>
2024 Method
Changes 4
M

Transform.CreateReflection

Description:
Creates a transform that represents a reflection across the given plane.

public static Transform CreateReflection(
	Plane plane
)

Return Value The new transform. The new transform.

private Transform Reflect(ReferencePlane refPlane)
{
    Transform mirTrans = Transform.CreateReflection(refPlane.GetPlane());

    return mirTrans;
}

Loading…