Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Point3D Class / Multiplication Operator / Multiplication(Double,Point3D) Operator
Scalar value
The point

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

    Parameters

    s
    Scalar value
    p
    The point

    Return Value

    The resulting 3D point.
    See Also