Skip to content
Snippets Groups Projects
Commit 2d19726e authored by Ban Siesta's avatar Ban Siesta
Browse files

rotation: added another missing rotation

parent 17ee20a3
No related branches found
No related tags found
No related merge requests found
......@@ -194,5 +194,10 @@ rotate_3f(enum Rotation rot, float &x, float &y, float &z)
tmp = z; z = x; x = -tmp;
return;
}
case ROTATION_ROLL_180_PITCH_270: {
tmp = z; z = x; x = tmp;
y = -y;
return;
}
}
}
......@@ -75,6 +75,7 @@ enum Rotation {
ROTATION_PITCH_90 = 24,
ROTATION_PITCH_270 = 25,
ROTATION_ROLL_270_YAW_270 = 26,
ROTATION_ROLL_180_PITCH_270 = 27,
ROTATION_MAX
};
......@@ -111,7 +112,8 @@ const rot_lookup_t rot_lookup[] = {
{270, 0, 135 },
{ 0, 90, 0 },
{ 0, 270, 0 },
{270, 0, 270 }
{270, 0, 270 },
{180, 270, 0 }
};
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment