 | Vector3IMax 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 Vector3I Max(
Vector3I lhs,
Vector3I rhs
)
Public Shared Function Max (
lhs As Vector3I,
rhs As Vector3I
) As Vector3I
public:
static Vector3I Max(
Vector3I lhs,
Vector3I rhs
)
static member Max :
lhs : Vector3I *
rhs : Vector3I -> Vector3I
Parameters
- lhs
- Type: Slash.Math.Algebra.VectorsVector3I
First vector. - rhs
- Type: Slash.Math.Algebra.VectorsVector3I
Second vector.
Return Value
Type:
Vector3IVector that is made from the largest components of two vectors.
See Also