 | Vector2IMin Method |
Creates a new vector out of the two passed vectors and takes the minimum values from these for each component.
Namespace: Slash.Math.Algebra.VectorsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static Vector2I Min(
Vector2I value1,
Vector2I value2
)
Public Shared Function Min (
value1 As Vector2I,
value2 As Vector2I
) As Vector2I
public:
static Vector2I Min(
Vector2I value1,
Vector2I value2
)
static member Min :
value1 : Vector2I *
value2 : Vector2I -> Vector2I
Parameters
- value1
- Type: Slash.Math.Algebra.VectorsVector2I
First vector. - value2
- Type: Slash.Math.Algebra.VectorsVector2I
Second vector.
Return Value
Type:
Vector2I Vector which components are the minimum of the respective components of the two passed vectors.
See Also