Vector3Multiply(Double, Vector3) Operator |
Multiplies the components of vector by a scalar.
Namespace: CFX.Structures.GeometryAssembly: CFX (in CFX.dll) Version: 2.1.1+880255d2f7380f340f56b243a51d99f2136bdae3
Syntaxpublic static Vector3 operator *(
double scaleFactor,
Vector3 value
)
Public Shared Operator * (
scaleFactor As Double,
value As Vector3
) As Vector3
Parameters
- scaleFactor Double
- Scalar value on the left of the mul sign.
- value Vector3
- Source Vector3 on the right of the mul sign.
Return Value
Vector3Result of the vector multiplication with a scalar.
See Also