Click or drag to resize
AB4D logo

PlaneTryCreatePlane Method

Creates plane from 3 positions. If the positions are the same or lie on the same line, then return null.

Namespace: Ab3d.Utilities
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.1.8864.1045
Syntax
C#
public static Plane TryCreatePlane(
	Point3D p1,
	Point3D p2,
	Point3D p3
)

Parameters

p1  Point3D
first position
p2  Point3D
second position
p3  Point3D
third position

Return Value

Plane
Plane or null when points are collinear or if two points are the same
See Also