 | Vector3FMin 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 Vector3F Min(
Vector3F lhs,
Vector3F rhs
)
Public Shared Function Min (
lhs As Vector3F,
rhs As Vector3F
) As Vector3F
public:
static Vector3F Min(
Vector3F lhs,
Vector3F rhs
)
static member Min :
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 smallest components of two vectors.
See Also