|
IntPointMultiply Operator
|
Multiplication operator - multiplies coordinates of the specified point by scalar value.
Namespace:
Accord
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public static IntPoint operator *(
IntPoint point,
int factor
)
Public Shared Operator * (
point As IntPoint,
factor As Integer
) As IntPoint
Request Example
View SourceParameters
- point
- Type: AccordIntPoint
Point to multiply coordinates of. - factor
- Type: SystemInt32
Multiplication factor.
Return Value
Type:
IntPointReturns new point which coordinates equal to coordinates of
the specified point multiplied by specified value.
See Also