Multiplication operator - multiplies coordinates of the specified point by scalar value.

Namespace:  AForge
Assembly:  AForge (in AForge.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public static IntPoint Multiply(
	IntPoint point,
	int factor
)

Parameters

point
Type: AForge..::.IntPoint
Point to multiply coordinates of.
factor
Type: System..::.Int32
Multiplication factor.

Return Value

Returns new point which coordinates equal to coordinates of the specified point multiplied by specified value.

See Also