Merge pull request #63 from Ventrella/master

fixed orientation contrstuctor
This commit is contained in:
Philip Rosedale 2013-04-17 11:21:50 -07:00
commit e558f45426

View file

@ -12,9 +12,7 @@
static bool testingForNormalizationAndOrthogonality = true; static bool testingForNormalizationAndOrthogonality = true;
Orientation::Orientation() { Orientation::Orientation() {
right = glm::vec3( 1.0, 0.0, 0.0 ); setToIdentity();
up = glm::vec3( 0.0, 1.0, 0.0 );
front = glm::vec3( 0.0, 0.0, 1.0 );
} }