Cleanup: Remove unused function

This commit is contained in:
Sergey Sharybin 2017-11-29 15:59:51 +01:00
parent 60703e45f3
commit 1f9387ef91
2 changed files with 0 additions and 13 deletions

View File

@ -52,7 +52,6 @@ bool BKE_group_object_exists(struct Group *group, struct Object *ob);
bool BKE_group_object_cyclic_check(struct Main *bmain, struct Object *object, struct Group *group);
bool BKE_group_is_animated(struct Group *group, struct Object *parent);
void BKE_group_tag_recalc(struct Group *group);
void BKE_group_handle_recalc_and_update(struct EvaluationContext *eval_ctx, struct Scene *scene, struct Object *parent, struct Group *group);
#endif /* __BKE_GROUP_H__ */

View File

@ -268,18 +268,6 @@ Group *BKE_group_object_find(Group *group, Object *ob)
return NULL;
}
void BKE_group_tag_recalc(Group *group)
{
GroupObject *go;
if (group == NULL) return;
for (go = group->gobject.first; go; go = go->next) {
if (go->ob)
go->ob->recalc = go->recalc;
}
}
bool BKE_group_is_animated(Group *group, Object *UNUSED(parent))
{
GroupObject *go;