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