Vector3Multiply Operator (Vector3, Double)
|
Multiplies a vector with an scalar (same as a*u, commutative property).
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static Vector3 operator *(
Vector3 u,
double a
)
Public Shared Operator * (
u As Vector3,
a As Double
) As Vector3
public:
static Vector3 operator *(
Vector3 u,
double a
)
static let inline (*)
u : Vector3 *
a : float : Vector3
STATIC OPERATOR *(
u AS Vector3,
a AS REAL8
) AS Vector3
Parameters
- u
- Type: DXFReaderNETVector3
Vector. - a
- Type: SystemDouble
Scalar.
Return Value
Type:
Vector3The multiplication of u times a.
See Also