Multiply the point with a scale

Namespace:  Emgu.CV.Structure
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.793 (2.1.0.793)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static MCvPoint2D64f operator *(
	double scale,
	MCvPoint2D64f p
)
Public Shared Operator * ( _
	scale As Double, _
	p As MCvPoint2D64f _
) As MCvPoint2D64f
public:
static MCvPoint2D64f operator *(
	double scale, 
	MCvPoint2D64f p
)

Parameters

scale
Double
The scale
p
MCvPoint2D64f
The point to be multiplied

Return Value

The point multiplied by the scale

See Also