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

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_subsurf.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
 
/* $Id: BKE_subsurf.h,v 1.10 2004/03/28 08:46:33 zuster Exp $ 
 
1
/* $Id: BKE_subsurf.h,v 1.18 2005/04/04 03:38:21 zuster Exp $ 
2
2
 *
3
3
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
4
4
 *
33
33
 
34
34
struct Mesh;
35
35
struct Object;
36
 
struct Displist;
37
 
struct DispListMesh;
 
36
struct DerivedMesh;
38
37
struct EditMesh;
39
38
 
40
 
struct DispListMesh *subsurf_make_dispListMesh_from_editmesh(struct EditMesh *em, int subdivLevels, int flags, short type);
41
 
struct DispListMesh *subsurf_make_dispListMesh_from_mesh(struct Mesh *me, float *extverts, int subdivLevels, int flags);
 
39
struct DerivedMesh *subsurf_make_derived_from_editmesh(struct EditMesh *em, int subdivLevels, short type, struct DerivedMesh *oldDerived);
 
40
struct DerivedMesh *subsurf_make_derived_from_mesh(struct Mesh *me, int subdivLevels);
42
41
 
43
42
void subsurf_calculate_limit_positions(Mesh *me, float (*positions_r)[3]);
44
43