Skip to content

Commit

Permalink
Fixing public field order for System.Numerics types (#71728)
Browse files Browse the repository at this point in the history
  • Loading branch information
tannergooding authored Jul 7, 2022
1 parent bcb18f0 commit 889404f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ public partial struct Matrix4x4 : System.IEquatable<System.Numerics.Matrix4x4>
}
public partial struct Plane : System.IEquatable<System.Numerics.Plane>
{
public float D;
public System.Numerics.Vector3 Normal;
public float D;
public Plane(System.Numerics.Vector3 normal, float d) { throw null; }
public Plane(System.Numerics.Vector4 value) { throw null; }
public Plane(float x, float y, float z, float d) { throw null; }
Expand All @@ -149,10 +149,10 @@ public partial struct Plane : System.IEquatable<System.Numerics.Plane>
}
public partial struct Quaternion : System.IEquatable<System.Numerics.Quaternion>
{
public float W;
public float X;
public float Y;
public float Z;
public float W;
public Quaternion(System.Numerics.Vector3 vectorPart, float scalarPart) { throw null; }
public Quaternion(float x, float y, float z, float w) { throw null; }
public static System.Numerics.Quaternion Zero { get { throw null; } }
Expand Down Expand Up @@ -464,10 +464,10 @@ public readonly void CopyTo(System.Span<float> destination) { }
}
public partial struct Vector4 : System.IEquatable<System.Numerics.Vector4>, System.IFormattable
{
public float W;
public float X;
public float Y;
public float Z;
public float W;
public Vector4(System.Numerics.Vector2 value, float z, float w) { throw null; }
public Vector4(System.Numerics.Vector3 value, float w) { throw null; }
public Vector4(float value) { throw null; }
Expand Down

0 comments on commit 889404f

Please sign in to comment.