This commit is contained in:
Jeffrey Ventrella 2013-05-22 18:16:11 -07:00
parent b7613497eb
commit 82af516471
2 changed files with 0 additions and 11 deletions

View file

@ -22,16 +22,6 @@ void Orientation::setToIdentity() {
front = glm::vec3(IDENTITY_FRONT);
}
/*
void Orientation::setToPitchYawRoll(float pitch_change, float yaw_change, float roll_change) {
setToIdentity();
roll (roll_change);
yaw (yaw_change);
pitch(pitch_change);
}
*/
void Orientation::set(Orientation o) {
quat = o.quat;

View file

@ -22,7 +22,6 @@ public:
Orientation();
void set(Orientation);
//void setToPitchYawRoll(float pitch_change, float yaw_change, float roll_change);
void setToIdentity();
void pitch(float pitch_change);