Exemplo n.º 1
0
 /// <inheritdoc cref="Mathfs.Min(Vector4)"/>
 [MethodImpl(INLINE)] public static float Min(this Vector4 v) => Mathfs.Min(v);
Exemplo n.º 2
0
 public static float Min(this Vector4 v) => Mathfs.Min(v.x, v.y, v.z, v.w);
Exemplo n.º 3
0
 public static float Min(this Vector2 v) => Mathfs.Min(v.x, v.y);
Exemplo n.º 4
0
 public static float Min(this Vector3 v) => Mathfs.Min(v.x, v.y, v.z);
Exemplo n.º 5
0
 public static float AtMost(this float v, float max) => Mathfs.Min(v, max);