Multiplication(Single,Vector3) Operator
In This Topic
Scales a vector by the given value.
Syntax
'Declaration
Overloads Public Operator *( _
ByVal As System.Single, _
ByVal As Vector3 _
) As Vector3
public Vector3 operator *(
System.float ,
Vector3
)
Parameters
- scale
- The amount by which to scale the vector.
- value
- The vector to scale.
Return Value
The scaled vector.
See Also