Operator operator *
operator *(double, Point2D)
Multiplies a double value and a point.
Declaration
public static Point2D operator *(double inD, Point2D inPoint)
Parameters
| Type | Name | Description |
|---|---|---|
| double | inD | Left hand side double value. |
| Point2D | inPoint | Right hand side point. |
Returns
| Type | Description |
|---|---|
| Point2D | Multiplied point. |
operator *(Point2D, double)
Multiplies a point and a double value.
Declaration
public static Point2D operator *(Point2D inPoint, double inD)
Parameters
| Type | Name | Description |
|---|---|---|
| Point2D | inPoint | Left hand side point. |
| double | inD | Right hand side double value. |
Returns
| Type | Description |
|---|---|
| Point2D | Multiplied point. |