Plane.Normalize(Plane) Method (Microsoft.DirectX)
Returns the normal of a plane.
Definition
Visual Basic Public Shared Function Normalize( _
ByVal p As Plane _
) As PlaneC# public static Plane Normalize(
Plane p
);C++ public:
static Plane Normalize(
Plane p
);JScript public static function Normalize(
p : Plane
) : Plane;
Parameters
p Microsoft.DirectX.Plane
Source Plane structure.
Return Value
Microsoft.DirectX.Plane
A Plane structure that represents the normal of the plane.
Remarks
This method normalizes a plane so that
|a, b, c| == 1
.