Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Point3D Class / Subtraction Operator / Subtraction(Point3D,Vector3D) Operator
The 3D point
The 3D vector

In This Topic
    Subtraction(Point3D,Vector3D) Operator
    In This Topic
    Subtraction between a 3D point and a 3D vector.
    Syntax
    'Declaration
     
    Overloads Public Operator -( _
       ByVal a As Point3D, _
       ByVal b As Vector3D _
    ) As Point3D
    public Point3D operator -( 
       Point3D a,
       Vector3D b
    )

    Parameters

    a
    The 3D point
    b
    The 3D vector

    Return Value

    The resulting 3D point.
    See Also