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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Lukas Fittl
  • Date: 2006-09-20 01:57:27 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060920015727-gmoqlxwstx9wwqs3
Tags: 2.42a-1ubuntu1
* Merge from Debian unstable (Closes: Malone #55903). Remaining changes:
  - debian/genpot: Add python scripts from Lee June <blender@eyou.com> to
    generate a reasonable PO template from the sources. Since gettext is used
    in a highly nonstandard way, xgettext does not work for this job.
  - debian/rules: Call the scripts, generate po/blender.pot, and clean it up
    in the clean target.
  - Add a proper header to the generated PO template.
* debian/control: Build depend on libavformat-dev >= 3:0.cvs20060823-3.1,
  otherwise this package will FTBFS

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#define BIF_MESHTOOLS_H
35
35
 
36
36
struct Object;
 
37
struct EditVert;
37
38
 
38
39
extern int join_mesh(void);
39
40
 
42
43
 
43
44
extern void sort_faces(void);
44
45
 
45
 
extern int mesh_octree_table(struct Object *ob, float *co, char mode);
 
46
extern long mesh_octree_table(struct Object *ob, float *co, char mode);
46
47
extern int mesh_get_x_mirror_vert(struct Object *ob, int index);
 
48
extern struct EditVert *editmesh_get_x_mirror_vert(struct Object *ob, float *co);
47
49
 
48
50
#endif
49
51