Multiplies a scalar and a point.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public static Point operator *(
	Point point,
	double scalar
)
Visual Basic (Declaration)
Public Shared Operator * ( _
	point As Point, _
	scalar As Double _
) As Point
Visual C++
public:
static Point^ operator *(
	Point^ point, 
	double scalar
)

Parameters

point
Type: ceometric.VectorGeometry..::.Point
A point.
scalar
Type: System..::.Double
A double precision value.

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.

See Also