Struct Plane3d
Plane 3D Type for handling a 3D planar surface of 3 3D points
Namespace: FpAssistantCore.General
Assembly: FpAssistantCoreScl.dll
Syntax
public struct Plane3d
Constructors
View SourcePlane3d(Point3d, Point3d, Point3d)
Define plane with 3 point3d's
Declaration
public Plane3d(Point3d point1, Point3d point2, Point3d point3)
Parameters
Type | Name | Description |
---|---|---|
Point3d | point1 | First point on plane |
Point3d | point2 | Second point on plane |
Point3d | point3 | Third point on plane |
Methods
View SourceContains(Point3d)
Does the point lie on the same plane
Declaration
public bool Contains(Point3d point3d)
Parameters
Type | Name | Description |
---|---|---|
Point3d | point3d | Point to check if on this plane |
Returns
Type | Description |
---|---|
System.Boolean | True or false |