<Code Lib>
2025.3 Method
Changes 5
M

XYZ.op_Multiply(XYZ, Double)

Description:
Multiplies the specified number and the specified vector.
Remarks:
The multiplied vector is obtained by multiplying each coordinate of the specified vector by the specified value.
Overloads (2):
op_Multiply(XYZ,Double)

public static XYZ operator *(
	XYZ left,
	double value
)

  • left
    The vector to multiply with the value.
  • Double
    value
    The value to multiply with the specified vector.
Return Value XYZ The multiplied vector.

Loading…