~ubuntu-branches/ubuntu/intrepid/blender/intrepid-updates

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2008-08-08 02:45:40 UTC
  • mfrom: (12.1.14 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080808024540-kkjp7ekfivzhuw3l
Tags: 2.46+dfsg-4
* Fix python syntax warning in import_dxf.py, which led to nasty output
  in installation/upgrade logs during byte-compilation, using a patch
  provided by the script author (Closes: #492280):
   - debian/patches/45_fix_python_syntax_warning

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 14444 2008-04-16 22:40:48Z hos $
8
8
 *
9
 
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
 
9
 * ***** BEGIN GPL LICENSE BLOCK *****
10
10
 *
11
11
 * This program is free software; you can redistribute it and/or
12
12
 * modify it under the terms of the GNU General Public License
13
13
 * as published by the Free Software Foundation; either version 2
14
 
 * of the License, or (at your option) any later version. The Blender
15
 
 * Foundation also sells licenses for use in proprietary software under
16
 
 * the Blender License.  See http://www.blender.org/BL/ for information
17
 
 * about this.
 
14
 * of the License, or (at your option) any later version.
18
15
 *
19
16
 * This program is distributed in the hope that it will be useful,
20
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
32
29
 *
33
30
 * Contributor(s): none yet.
34
31
 *
35
 
 * ***** END GPL/BL DUAL LICENSE BLOCK *****
 
32
 * ***** END GPL LICENSE BLOCK *****
36
33
 */
37
34
 
38
35
#ifndef BKE_DEFORM_H
43
40
struct bDeformGroup;
44
41
 
45
42
void copy_defgroups (struct ListBase *lb1, struct ListBase *lb2);
46
 
struct bDeformGroup* copy_defgroup (struct bDeformGroup *ingroup);
 
43
struct bDeformGroup *copy_defgroup (struct bDeformGroup *ingroup);
47
44
struct bDeformGroup *get_named_vertexgroup (Object *ob, char *name);
48
 
int  get_defgroup_num (struct Object *ob, struct bDeformGroup   *dg);
 
45
int get_defgroup_num (struct Object *ob, struct bDeformGroup *dg);
 
46
int get_named_vertexgroup_num (Object *ob, char *name);
 
47
void unique_vertexgroup_name (struct bDeformGroup *dg, struct Object *ob);
49
48
 
50
49
#endif
51
50