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