Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2008-12-24 14:08:15 +0300
committerTon Roosendaal <ton@blender.org>2008-12-24 14:08:15 +0300
commite60e7f36679109a6c600f0029a60486e99d7995b (patch)
tree58cb1dfdc12d643283fbb1598b1c06a122c4fcaf /source/blender/blenkernel/BKE_object.h
parentbc5b56e2a8f962f7116b1d8ccdd20f07e2ff0d2b (diff)
2.5
Removed global "workob" from BKE, should now by passed on as an arg.
Diffstat (limited to 'source/blender/blenkernel/BKE_object.h')
-rw-r--r--source/blender/blenkernel/BKE_object.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/BKE_object.h b/source/blender/blenkernel/BKE_object.h
index a4a06b704bc..6d46aad5296 100644
--- a/source/blender/blenkernel/BKE_object.h
+++ b/source/blender/blenkernel/BKE_object.h
@@ -45,7 +45,9 @@ struct BulletSoftBody;
struct Group;
struct bAction;
-void clear_workob(void);
+void clear_workob(struct Object *workob);
+void what_does_parent(struct Object *ob, struct Object *workob);
+
void copy_baseflags(void);
void copy_objectflags(void);
struct SoftBody *copy_softbody(struct SoftBody *sb);
@@ -104,8 +106,6 @@ void where_is_object_time(struct Object *ob, float ctime);
void where_is_object(struct Object *ob);
void where_is_object_simul(struct Object *ob);
-void what_does_parent(struct Object *ob);
-
struct BoundBox *unit_boundbox(void);
void boundbox_set_from_min_max(struct BoundBox *bb, float min[3], float max[3]);
struct BoundBox *object_get_boundbox(struct Object *ob);