Files
PveTeam.Math/PveTeam.Math/QuaternionD.cs
2024-05-27 12:02:14 +02:00

13 lines
278 B
C#

using System;
namespace PveTeam.Mathematics
{
public struct QuaternionD : IEquatable<QuaternionD>
{
public Double X, Y, Z, W;
public bool Equals(QuaternionD other)
=> X == other.X && Y == other.Y && Z == other.Z && W == other.W;
}
}