Vector4Divide(Vector4, Vector4, Vector4) Method |
Divides the components of a
Vector4 by the components of another
Vector4.
Namespace: CFX.Structures.GeometryAssembly: CFX (in CFX.dll) Version: 2.0.0+5bb1f71a933ed371a0f5f2d5e7db34c89b75f3ea
Syntaxpublic static void Divide(
ref Vector4 value1,
ref Vector4 value2,
out Vector4 result
)
Public Shared Sub Divide (
ByRef value1 As Vector4,
ByRef value2 As Vector4,
<OutAttribute> ByRef result As Vector4
)
Parameters
- value1 Vector4
- Source Vector4.
- value2 Vector4
- Divisor Vector4.
- result Vector4
- The result of dividing the vectors as an output parameter.
See Also