Show / Hide Table of Contents

Struct Plane3d

Plane 3D Type for handling a 3D planar surface of 3 3D points

Inherited Members
ValueType.Equals(object)
ValueType.GetHashCode()
ValueType.ToString()
object.Equals(object, object)
object.GetType()
object.ReferenceEquals(object, object)
Namespace: FpAssistantCore.General
Assembly: FpAssistantCoreScl.dll
Syntax
public struct Plane3d

Constructors

View Source

Plane3d(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

Exceptions
Type Condition
ArgumentException

Specified points do not define a valid plane

Methods

View Source

Contains(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
bool

True or false

  • View Source
In this article
Back to top Copyright 2018-2025 CADology Limited