[Namespaces changes]

trimesh->tri

clean up of some namespaces to comply the following naming:

Complexes (3 letters namespaces):
order 0 (point cloud    ) :vrt
order 1 (edge meshes)     :edg
order 2 (triangle meshes) :tri
order 3 (triangle meshes) :tet

Simplexes (extended namespaces):
order 0 (vertex)      :vertex 
order 1 (edge)        :edge 
order 2 (triangle)    :triangle (temporarily it remains "face")
order 3 (tetrahedron) :tetrahedron
This commit is contained in:
ganovelli 2008-09-30 10:55:18 +00:00
parent ece2df9202
commit e5d28ed8b5
1 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ template <class OLD_MESH_TYPE,class NEW_MESH_TYPE, class FLT>
int SliceSize;
int CurrentSlice;
typedef trimesh::FaceTmark<Old_Mesh> MarkerFace;
typedef tri::FaceTmark<Old_Mesh> MarkerFace;
MarkerFace markerFunctor;
@ -516,6 +516,6 @@ static void Resample(Old_Mesh &old_mesh,New_Mesh &new_mesh,vcg::Point3<int> accu
};//end class resampler
};//end namespace trimesh
};//end namespace tri
};//end namespace vcg
#endif