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

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

    Parameters

    p
    The 2D point
    s
    Scalar value

    Return Value

    The resulting 2D point.
    See Also