Multiply the point with a scale

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static MCvPoint3D32f operator *(
	float scale,
	MCvPoint3D32f p
)
Public Shared Operator * ( _
	scale As Single, _
	p As MCvPoint3D32f _
) As MCvPoint3D32f
public:
static MCvPoint3D32f operator *(
	float scale, 
	MCvPoint3D32f p
)

Parameters

scale
Single
The scale
p
MCvPoint3D32f
The point to be multiplied

Return Value

The point multiplied by the scale

See Also