~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 * 
5
5
 *      Reevan McKay et al
6
6
 *
7
 
 * $Id: BKE_deform.h,v 1.12 2005/08/14 06:08:39 zuster Exp $
 
7
 * $Id: BKE_deform.h,v 1.13 2007/04/27 11:16:34 aligorith Exp $
8
8
 *
9
9
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
10
10
 *
43
43
struct bDeformGroup;
44
44
 
45
45
void copy_defgroups (struct ListBase *lb1, struct ListBase *lb2);
46
 
struct bDeformGroup* copy_defgroup (struct bDeformGroup *ingroup);
 
46
struct bDeformGroup *copy_defgroup (struct bDeformGroup *ingroup);
47
47
struct bDeformGroup *get_named_vertexgroup (Object *ob, char *name);
48
 
int  get_defgroup_num (struct Object *ob, struct bDeformGroup   *dg);
 
48
int get_defgroup_num (struct Object *ob, struct bDeformGroup *dg);
 
49
void unique_vertexgroup_name (struct bDeformGroup *dg, struct Object *ob);
49
50
 
50
51
#endif
51
52