Multiplies a scalar and a point.
Namespace:
ceometric.VectorGeometryAssembly: ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)
Syntax
C# |
---|
public static Point operator *( double scalar, Point point ) |
Visual Basic (Declaration) |
---|
Public Shared Operator * ( _ scalar As Double, _ point As Point _ ) As Point |
Visual C++ |
---|
public: static Point^ operator *( double scalar, Point^ point ) |
Parameters
- scalar
- Type: System..::.Double
A double precision value.
- point
- Type: ceometric.VectorGeometry..::.Point
A point.
Return Value
Returns the result of the multiplication of a scalar and a point (which again is a point).Remarks
Multiplying a scalar and a point means multiplying each coordinate of point
with scalar.