PointMultiply Operator (Point, Single) |
Multiplies the
X and
Y of a
point by the specified floating point
factor
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static PointF operator *(
Point point,
float factor
)
Public Shared Operator * (
point As Point,
factor As Single
) As PointF
static let inline (*)
point : Point *
factor : float32 : PointF
Parameters
- point
- Type: Eto.DrawingPoint
Point to multiply - factor
- Type: SystemSingle
Factor to multiply both the X and Y coordinates by
Return Value
Type:
PointFA new instance of a PointF struct with the product of the
point and
factorSee Also