<Code Lib>
2025 Method
Changes 5
M

Transform.CreateReflection

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

public static Transform CreateReflection(
	Plane plane
)

Return Value Transform The new transform.

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

    return mirTrans;
}

Loading…