Subversion Repositories gelsvn

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
332 jab 1
#ifndef __SUBDIVIDE_H__
2
#define __SUBDIVIDE_H__
3
 
4
#include "Manifold.h"
5
 
6
namespace HMesh
7
{
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
10
				point on each incident edge and a point at the centre of the face. */
11
		void cc_split(Manifold&, Manifold&);
12
}
13
 
14
#endif