|
DoublePoint. Multiply Operator
|
Multiplication operator - multiplies coordinates of the specified point by scalar value.
Namespace:
Accord
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntaxpublic static DoublePoint operator *(
DoublePoint point,
double factor
)
Public Shared Operator * (
point As DoublePoint,
factor As Double
) As DoublePoint
Request Example
View SourceParameters
- point
- Type: Accord.DoublePoint
Point to multiply coordinates of. - factor
- Type: System.Double
Multiplication factor.
Return Value
Type:
DoublePointReturns new point which coordinates equal to coordinates of
the specified point multiplied by specified value.
See Also