 | Vector3FMax Method |
Returns a vector that is made from the largest components of two vectors.
Namespace: Slash.Math.Algebra.VectorsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static Vector3F Max(
Vector3F lhs,
Vector3F rhs
)
Public Shared Function Max (
lhs As Vector3F,
rhs As Vector3F
) As Vector3F
public:
static Vector3F Max(
Vector3F lhs,
Vector3F rhs
)
static member Max :
lhs : Vector3F *
rhs : Vector3F -> Vector3F
Parameters
- lhs
- Type: Slash.Math.Algebra.VectorsVector3F
First vector. - rhs
- Type: Slash.Math.Algebra.VectorsVector3F
Second vector.
Return Value
Type:
Vector3FVector that is made from the largest components of two vectors.
See Also