New minimal & 2D drawing type for Manipulators; try F10 "rt" on 5 (or 6 for

same style in trackball arcs)

Full collection can be found temporally here;
http://www.blender.org/bf/rt.html
This commit is contained in:
2005-04-03 13:12:08 +00:00
parent 555287021a
commit bbcc63326e
2 changed files with 551 additions and 43 deletions

View File

@@ -666,17 +666,14 @@ void BIF_drawConstraint(void)
if (tc->mode & CON_AXIS0) {
draw_manipulator_ext(curarea, t->mode, 'x', 0, tc->center, tc->mtx);
draw_manipulator_ext(curarea, t->mode, 'x', 2, tc->center, tc->mtx);
// drawLine(tc->center, tc->mtx[0], 'x', DRAWLIGHT);
}
if (tc->mode & CON_AXIS1) {
draw_manipulator_ext(curarea, t->mode, 'y', 0, tc->center, tc->mtx);
draw_manipulator_ext(curarea, t->mode, 'y', 2, tc->center, tc->mtx);
// drawLine(tc->center, tc->mtx[1], 'y', DRAWLIGHT);
}
if (tc->mode & CON_AXIS2) {
draw_manipulator_ext(curarea, t->mode, 'z', 0, tc->center, tc->mtx);
draw_manipulator_ext(curarea, t->mode, 'z', 2, tc->center, tc->mtx);
// drawLine(tc->center, tc->mtx[2], 'z', DRAWLIGHT);
}
}