13 lines
278 B
C#
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;
|
|
}
|
|
}
|