PointDMultiply(PointD, Double) 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: 0
C#
public static PointD operator *(
	PointD a,
	double b
)

Parameters

a  PointD
Point to multiply.
b  Double
value to multiply both values X and Y.

Return Value

PointD
new point with multiplied values.

See Also