 | Vector3IMin Method |
Returns a vector that is made from the smallest components of two vectors.
Namespace: Slash.Math.Algebra.VectorsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static Vector3I Min(
Vector3I lhs,
Vector3I rhs
)
Public Shared Function Min (
lhs As Vector3I,
rhs As Vector3I
) As Vector3I
public:
static Vector3I Min(
Vector3I lhs,
Vector3I rhs
)
static member Min :
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 smallest components of two vectors.
See Also