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

« back to all changes in this revision

Viewing changes to source/blender/include/BIF_editdeform.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: BIF_editdeform.h,v 1.6 2004/04/20 22:00:32 ton Exp $
 
2
 * $Id: BIF_editdeform.h,v 1.8 2005/01/12 23:57:32 blendix Exp $
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
43
43
struct MDeformWeight;
44
44
struct bDeformGroup;
45
45
 
46
 
struct bDeformGroup *get_named_vertexgroup (Object *ob, char *name);
47
46
void unique_vertexgroup_name (struct bDeformGroup *dg, struct Object *ob);
48
47
struct bDeformGroup *add_defgroup_name (struct Object *ob, char *name);
49
48
void add_defgroup (struct Object *ob);
53
52
void sel_verts_defgroup (int select);
54
53
struct MDeformWeight *verify_defweight (struct MDeformVert *dv, int defgroup);
55
54
void verify_defgroups (struct Object *ob);
56
 
int  get_defgroup_num (struct Object *ob, struct bDeformGroup   *dg);
57
55
void add_vert_to_defgroup (struct Object *ob, struct bDeformGroup *dg, 
58
56
                                                   int vertnum, float weight, 
59
57
                                                   int assignmode);
61
59
                                                   int vertnum);
62
60
void create_dverts(Mesh *me);
63
61
 
 
62
extern void object_apply_deform(struct Object *ob);
 
63
 
64
64
#endif
65
65