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

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_mesh.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
2
 * blenlib/BKE_mesh.h (mar-2001 nzc)
3
3
 *      
4
 
 * $Id: BKE_mesh.h,v 1.9 2004/03/20 23:59:57 zuster Exp $ 
 
4
 * $Id: BKE_mesh.h,v 1.11 2005/03/26 17:29:37 zuster Exp $ 
5
5
 *
6
6
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
7
7
 *
73
73
void free_dverts(struct MDeformVert *dvert, int totvert);
74
74
void copy_dverts(struct MDeformVert *dst, struct MDeformVert *src, int totvert); /* __NLA */
75
75
int mesh_uses_displist(struct Mesh *me);
76
 
float get_mvert_weight (struct Object *ob, int vert, int defgroup);
77
76
int update_realtime_texture(struct TFace *tface, double time);
78
77
void mesh_delete_material_index(struct Mesh *me, int index);
79
78
void mesh_set_smooth_flag(struct Mesh *me, int enableSmooth);
80
79
 
 
80
void make_edges(struct Mesh *me);
 
81
 
81
82
        /** Generate the mesh vertex normals by averaging over connected faces.
82
83
         *
83
84
         * @param me The mesh to update.