18 lines
341 B
C#
18 lines
341 B
C#
namespace Passer.LinearAlgebra
|
|
{
|
|
public class Quat32
|
|
{
|
|
public float x;
|
|
public float y;
|
|
public float z;
|
|
public float w;
|
|
|
|
public Quat32(float x, float y, float z, float w)
|
|
{
|
|
this.x = x;
|
|
this.y = y;
|
|
this.z = z;
|
|
this.w = w;
|
|
}
|
|
}
|
|
} |