Click or drag to resize
Accord.NET (logo)

PlaneFromPoints Method

Constructs a new Plane object from three points.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static Plane FromPoints(
	Point3 point1,
	Point3 point2,
	Point3 point3
)
Request Example View Source

Parameters

point1
Type: Accord.MathPoint3
The first point.
point2
Type: Accord.MathPoint3
The second point.
point3
Type: Accord.MathPoint3
The third point.

Return Value

Type: Plane
A Plane passing through the three points.
See Also