Matrix3, Matrix4, Quaternation?
Posted: Sat Jan 20, 2007 3:40 am
				
				What are the purebasic equivelants of;
Matrix3, Matrix4, and Quaternation...
Vector3 and Vector4 ive worked out myself;
			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
