1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 15:26:00 +02:00

Fixed default ctor issues

This commit is contained in:
Brian Fiete 2020-01-25 07:03:14 -08:00
parent 7b22b37822
commit 6ba8bdc14c
3 changed files with 16 additions and 1 deletions

View file

@ -10,7 +10,12 @@ namespace Beefy.geom
public float mZ;
public float mW;
public static readonly Quaternion Identity = Quaternion(0, 0, 0, 1);
public this()
{
this = default;
}
public this(float x, float y, float z, float w)
{
mX = x;