Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / PlaneEquation Class / Create Method
3D point on the plane
3D vector perpendicular to the plane

In This Topic
    Create Method (PlaneEquation)
    In This Topic
    Creates a plane equation from a 3D point and 3D normal vector. It sets (X,Y,Z) to a unitized N, then sets D = -(X*P.X + y*P.Y + Z*P.Z).
    Syntax
    'Declaration
     
    Public Function Create( _
       ByVal P As Point3D, _
       ByVal N As Vector3D _
    ) As Boolean
    public bool Create( 
       Point3D P,
       Vector3D N
    )

    Parameters

    P
    3D point on the plane
    N
    3D vector perpendicular to the plane

    Return Value

    True if the operation succeeded, false otherwise.
    See Also