added bbox of the mesh

vn int->size_t
This commit is contained in:
Paolo Cignoni 2006-08-23 15:32:24 +00:00
parent 4c34a7674c
commit 47b31587ba
1 changed files with 8 additions and 10 deletions

View File

@ -24,6 +24,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.3 2005/09/20 13:58:55 pietroni
Modified MArk function parameter form ConstVertexPointer to VertexPointer
Revision 1.2 2005/08/02 11:37:29 pietroni
renamed typedef VertexContainer into VertContainer (like trimesh)
@ -54,7 +57,6 @@ namespace vertex {
/** \class VertexMesh.
This is class for definition of a mesh.
@param VertContainerType (Template Parameter) Specifies the type of the vertices container any the vertex type.
@param PointContainerType (Template Parameter) Specifies the type of the faces container any the face type.
*/
template < class VertContainerType >
class VertexMesh{
@ -69,17 +71,13 @@ class VertexMesh{
typedef const VertexType * ConstVertexPointer;
typedef Box3<ScalarType> BoxType;
/// Set of vertices
VertContainerType vert;
/// Real number of vertices
int vn;
/// Bounding box of the mesh
Box3<ScalarType> bbox;
VertContainerType vert; /// Set of vertices
size_t vn; /// Actual number of vertices
Box3<ScalarType> bbox; /// Bounding box of the mesh
/// Global color
private:
Color4b c;
Color4b c; /// Global color
public:
inline const Color4b & C() const