PointDMultiply(Double, PointD) Operator

Calculates a new point with both values (X and Y) multiplied with one double value.

Definition

Namespace: PCBI.MathUtils
Assembly: PCB-Investigator (in PCB-Investigator.exe) Version: 16
C#
public static PointD operator *(
	double d,
	PointD p
)

Parameters

d  Double
value to multiply both values X and Y.
p  PointD
Point to multiply.

Return Value

PointD
new point with multiplied values.

See Also