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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
void BKE_mball_cubeTable_free(void);
49
49
 
50
50
void BKE_mball_polygonize(struct Scene *scene, struct Object *ob, struct ListBase *dispbase);
51
 
int BKE_mball_is_basis_for(struct Object *ob1, struct Object *ob2);
52
 
int BKE_mball_is_basis(struct Object *ob);
 
51
bool BKE_mball_is_basis_for(struct Object *ob1, struct Object *ob2);
 
52
bool BKE_mball_is_basis(struct Object *ob);
53
53
struct Object *BKE_mball_basis_find(struct Scene *scene, struct Object *ob);
54
54
 
55
55
void BKE_mball_texspace_calc(struct Object *ob);
57
57
 
58
58
void BKE_mball_properties_copy(struct Scene *scene, struct Object *active_object);
59
59
 
60
 
int BKE_mball_minmax(struct MetaBall *mb, float min[3], float max[3]);
61
 
int BKE_mball_center_median(struct MetaBall *mb, float r_cent[3]);
62
 
int BKE_mball_center_bounds(struct MetaBall *mb, float r_cent[3]);
 
60
bool BKE_mball_minmax(struct MetaBall *mb, float min[3], float max[3]);
 
61
bool BKE_mball_minmax_ex(struct MetaBall *mb, float min[3], float max[3],
 
62
                         float obmat[4][4], const short flag);
 
63
bool BKE_mball_center_median(struct MetaBall *mb, float r_cent[3]);
 
64
bool BKE_mball_center_bounds(struct MetaBall *mb, float r_cent[3]);
63
65
void BKE_mball_translate(struct MetaBall *mb, const float offset[3]);
64
66
 
65
67
struct MetaElem *BKE_mball_element_add(struct MetaBall *mb, const int type);