Matrix3, Matrix4, and Quaternation...
Vector3 and Vector4 ive worked out myself;
Code: Select all
Structure Vector3
  x.d
  y.d
  z.d
Endstructure
Structure Vector4
  x.f
  y.f
  z.f
  w.f
Endstructure
Code: Select all
Structure Vector3
  x.d
  y.d
  z.d
Endstructure
Structure Vector4
  x.f
  y.f
  z.f
  w.f
Endstructure
Code: Select all
Structure Vector3
  x.f
  y.f
  z.f
EndStructure
Structure Vector4
  x.f
  y.f
  z.f
  w.f
EndStructure
Structure Row3
  Column.f[3]
EndStructure
Structure Matrix3
  Row.Row3[3]
EndStructure
Structure Row4
  Column.f[4]
EndStructure
Structure Matrix4
  Row.Row4[4]
EndStructure
Structure Quaternation
  x.f
  y.f
  z.f
  w.f
EndStructure