Subversion Repositories gelsvn

Rev

Rev 332 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 332 Rev 448
1
#ifndef __SUBDIVIDE_H__
1
#ifndef __HMESH_SUBDIVIDE_H__
2
#define __SUBDIVIDE_H__
2
#define __HMESH_SUBDIVIDE_H__
3
 
3
 
4
#include "Manifold.h"
4
#include "Manifold.h"
5
 
5
 
6
namespace HMesh
6
namespace HMesh
7
{
7
{
8
		/** Perform a Catmull-Clark split, i.e. a split where each face is divided
8
		/** Perform a Catmull-Clark split, i.e. a split where each face is divided
9
				into new quadrilateral faces formed by connecting a corner with a
9
				into new quadrilateral faces formed by connecting a corner with a
10
				point on each incident edge and a point at the centre of the face. */
10
				point on each incident edge and a point at the centre of the face. */
11
		void cc_split(Manifold&, Manifold&);
11
		void cc_split(Manifold&, Manifold&);
12
}
12
}
13
 
13
 
14
#endif
14
#endif
15
 
15