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

In This Topic
    Addition(Point3D,Vector3D) Operator
    In This Topic
    Addition 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