~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_anim.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
struct ReportList;
44
44
 
45
45
/* ---------------------------------------------------- */
46
 
/* Animation Visualisation */
 
46
/* Animation Visualization */
47
47
 
48
48
void animviz_settings_init(struct bAnimVizSettings *avs);
49
49
 
60
60
 
61
61
void free_path(struct Path *path);
62
62
void calc_curvepath(struct Object *ob);
63
 
int interval_test(int min, int max, int p1, int cycl);
64
63
int where_on_path(struct Object *ob, float ctime, float vec[4], float dir[3], float quat[4], float *radius, float *weight);
65
64
 
66
65
/* ---------------------------------------------------- */
67
66
/* Dupli-Geometry */
68
67
 
69
 
struct ListBase *object_duplilist(struct Scene *sce, struct Object *ob);
 
68
struct ListBase *object_duplilist_ex(struct Scene *sce, struct Object *ob, int update, int for_render);
 
69
struct ListBase *object_duplilist(struct Scene *sce, struct Object *ob, int for_render);
70
70
void free_object_duplilist(struct ListBase *lb);
71
71
int count_duplilist(struct Object *ob);
72
72