PointDMultiply(Double, PointD) Operator
Calculates a new point with both values (X and Y) multiplied with one double value.
Namespace: PCBI.MathUtilsAssembly: PCB-Investigator (in PCB-Investigator.exe) Version: 16
public static PointD operator *(
double d,
PointD p
)
Public Shared Operator * (
d As Double,
p As PointD
) As PointD
public:
static PointD operator *(
double d,
PointD p
)
static let inline (*)
d : float *
p : PointD : PointD
- d Double
- value to multiply both values X and Y.
- p PointD
- Point to multiply.
PointDnew point with multiplied values.