Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Point3D Class / Division Operator
The point
Scalar value

In This Topic
    Division Operator (Point3D)
    In This Topic
    Division between a 3D point and a scalar s.
    Syntax
    'Declaration
     
    Public Operator /( _
       ByVal p As Point3D, _
       ByVal s As Double _
    ) As Point3D
    public Point3D operator /( 
       Point3D p,
       double s
    )

    Parameters

    p
    The point
    s
    Scalar value

    Return Value

    The resulting 3D point.
    See Also