Subversion Repositories gelsvn

Rev

Rev 332 | Rev 595 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
448 jab 1
#ifndef __HMESH_SUBDIVIDE_H__
2
#define __HMESH_SUBDIVIDE_H__
332 jab 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