_matrix44.cc
Go to the documentation of this file.00001 #include "mathlib/_matrix44.h" 00002 00003 const _matrix44 _matrix44::identity = _matrix44(); 00004 00005 const _matrix44 _matrix44::ortho = _matrix44(0.5f, 0.0f, 0.0f, 0.0f, 00006 0.0f, 0.6667f, 0.0f, 0.0f, 00007 0.0f, 0.0f, -0.5f, 0.0f, 00008 0.0f, 0.0f, 0.5f, 1.0f);