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