Cleanup: unused code

This commit is contained in:
Campbell Barton 2017-06-17 11:31:49 +10:00
parent 608cabe2a1
commit 03f67fd5b0
3 changed files with 0 additions and 48 deletions

View File

@ -132,11 +132,6 @@ void ED_manipulator_grab3d_set_style(struct wmManipulator *mpr, int style);
void ED_manipulator_grab3d_set_up_vector(
struct wmManipulator *mpr, const float direction[3]);
/* -------------------------------------------------------------------- */
/* Facemap Manipulator */
struct bFaceMap *ED_manipulator_facemap_get_fmap(struct wmManipulator *mpr);
/* -------------------------------------------------------------------- */
/* Primitive Manipulator */

View File

@ -159,8 +159,6 @@ void Transform_Properties(struct wmOperatorType *ot, int flags);
void TRANSFORM_WGT_manipulator(struct wmManipulatorGroupType *wgt);
void TRANSFORM_WGT_object(struct wmManipulatorGroupType *wgt);
bool ED_widgetgroup_manipulator2d_poll(const struct bContext *C, struct wmManipulatorGroupType *wgt);
void ED_widgetgroup_manipulator2d_setup(const struct bContext *C, struct wmManipulatorGroup *mgroup);
void ED_widgetgroup_manipulator2d_refresh(const struct bContext *C, struct wmManipulatorGroup *mgroup);

View File

@ -1375,44 +1375,3 @@ void TRANSFORM_WGT_manipulator(wmManipulatorGroupType *wgt)
wgt->refresh = WIDGETGROUP_manipulator_refresh;
wgt->draw_prepare = WIDGETGROUP_manipulator_draw_prepare;
}
/* -------------------------------------------------------------------- */
/* Custom Object Manipulator (unfinished - unsure if this will stay) */
#if 0
static void WIDGETGROUP_object_manipulator_init(const bContext *C, wmManipulatorGroup *mgroup)
{
Object *ob = ED_object_active_context((bContext *)C);
if (ob->mgroup == NULL) {
ob->mgroup = mgroup;
}
WIDGETGROUP_manipulator_setup(C, mgroup);
}
static bool WIDGETGROUP_object_manipulator_poll(const bContext *C, wmManipulatorGroupType *wgt)
{
Object *ob = ED_object_active_context((bContext *)C);
if (ED_operator_object_active((bContext *)C)) {
if (STREQ(wgt->idname, ob->id.name)) {
return true;
}
}
return false;
}
/* XXX should this really be in transform_manipulator.c? */
void TRANSFORM_WGT_object(wmManipulatorGroupType *wgt)
{
wgt->name = "Object Widgets";
wgt->poll = WIDGETGROUP_object_manipulator_poll;
wgt->setup = WIDGETGROUP_object_manipulator_init;
wgt->refresh = WIDGETGROUP_manipulator_refresh;
wgt->draw_prepare = WIDGETGROUP_manipulator_draw_prepare;
wgt->flag |= (WM_MANIPULATORGROUPTYPE_3D | WM_MANIPULATORGROUPTYPE_SCALE_3D);
}
#endif