Replaced forgotten CMeshO with MESH_TYPE in line 314

This commit is contained in:
matteodelle 2009-01-15 17:31:23 +00:00
parent f5e4f86859
commit 12e32feb59
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ bool RefineE(MESH_TYPE &m, MIDPOINT mid, EDGEPRED ep,bool RefineSelected=false,
typedef RefinedFaceData<VertexPointer> RFD;
typedef typename MESH_TYPE :: template PerFaceAttributeHandle<RFD> HandleType;
HandleType RD = tri::Allocator<CMeshO>::AddPerFaceAttribute<RFD> (m,std::string("RefineData"));
HandleType RD = tri::Allocator<MESH_TYPE>::AddPerFaceAttribute<RFD> (m,std::string("RefineData"));
// Callback stuff
int step=0;