Cleanup some warnings.

This commit is contained in:
hondacrx
2021-11-15 16:11:20 -05:00
parent e0f344af25
commit 032f9a55f3
70 changed files with 233 additions and 234 deletions
+3 -3
View File
@@ -119,15 +119,15 @@ namespace Framework.GameMath
/// <summary>
/// Plane on the X axis.
/// </summary>
public static readonly Plane XPlane = new Plane(Vector3.XAxis, Vector3.Zero);
public static readonly Plane XPlane = new(Vector3.XAxis, Vector3.Zero);
/// <summary>
/// Plane on the Y axis.
/// </summary>
public static readonly Plane YPlane = new Plane(Vector3.YAxis, Vector3.Zero);
public static readonly Plane YPlane = new(Vector3.YAxis, Vector3.Zero);
/// <summary>
/// Plane on the Z axis.
/// </summary>
public static readonly Plane ZPlane = new Plane(Vector3.ZAxis, Vector3.Zero);
public static readonly Plane ZPlane = new(Vector3.ZAxis, Vector3.Zero);
#endregion
#region Public Properties