MCvPoint2D64fMultiply Operator (Double, MCvPoint2D64f) |
http://www.emgu.com
Multiply the point with a scale
Namespace:
Emgu.CV.Structure
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic 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
)
static let inline (*)
scale : float *
p : MCvPoint2D64f : MCvPoint2D64f
Parameters
- scale
- Type: SystemDouble
The scale - p
- Type: Emgu.CV.StructureMCvPoint2D64f
The point to be multiplied
Return Value
Type:
MCvPoint2D64fThe point multiplied by the scale
See Also