Plane::CreateFromVertices Method

Creates a Plane object that contains three specified points.

Namespace:  System.Numerics
Assembly:  System.Numerics.Vectors (in System.Numerics.Vectors.dll)

public:
static Plane CreateFromVertices(
	Vector3 point1, 
	Vector3 point2, 
	Vector3 point3
)

Parameters

point1
Type: System.Numerics::Vector3

The first point defining the plane.

point2
Type: System.Numerics::Vector3

The second point defining the plane.

point3
Type: System.Numerics::Vector3

The third point defining the plane.

Return Value

Type: System.Numerics::Plane
The plane containing the three points.
Show: