Constructs a plane through three non-collinear points.
Namespace:
ceometric.VectorGeometryAssembly: ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)
Syntax
C# |
---|
public Plane( Point point1, Point point2, Point point3 ) |
Visual Basic (Declaration) |
---|
Public Sub New ( _ point1 As Point, _ point2 As Point, _ point3 As Point _ ) |
Visual C++ |
---|
public: Plane( Point^ point1, Point^ point2, Point^ point3 ) |
Parameters
- point1
- Type: ceometric.VectorGeometry..::.Point
A first point on the plane.
- point2
- Type: ceometric.VectorGeometry..::.Point
A second point on the plane, not equal to point1.
- point3
- Type: ceometric.VectorGeometry..::.Point
A third point on the plane, not collinear to point1 and point2.
Exceptions
Exception | Condition |
---|---|
System..::.ArgumentException | point1, point2 and point3 are collinear. |