First checkin for OpenMesh 2.0
git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@2 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
67
Core/Mesh/BaseKernel.cc
Normal file
67
Core/Mesh/BaseKernel.cc
Normal file
@@ -0,0 +1,67 @@
|
||||
/*===========================================================================*\
|
||||
* *
|
||||
* OpenMesh *
|
||||
* Copyright (C) 2001-2003 by Computer Graphics Group, RWTH Aachen *
|
||||
* www.openmesh.org *
|
||||
* *
|
||||
*---------------------------------------------------------------------------*
|
||||
* *
|
||||
* License *
|
||||
* *
|
||||
* This library is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU Lesser General Public License as published *
|
||||
* by the Free Software Foundation, version 2.1. *
|
||||
* *
|
||||
* This library is distributed in the hope that it will be useful, but *
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
||||
* Lesser General Public License for more details. *
|
||||
* *
|
||||
* You should have received a copy of the GNU Lesser General Public *
|
||||
* License along with this library; if not, write to the Free Software *
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
|
||||
* *
|
||||
\*===========================================================================*/
|
||||
|
||||
#include <OpenMesh/Core/Mesh/BaseKernel.hh>
|
||||
namespace OpenMesh
|
||||
{
|
||||
|
||||
void BaseKernel::property_stats(std::ostream& _ostr) const
|
||||
{
|
||||
const PropertyContainer::Properties& vps = vprops_.properties();
|
||||
const PropertyContainer::Properties& hps = hprops_.properties();
|
||||
const PropertyContainer::Properties& eps = eprops_.properties();
|
||||
const PropertyContainer::Properties& fps = fprops_.properties();
|
||||
const PropertyContainer::Properties& mps = mprops_.properties();
|
||||
|
||||
PropertyContainer::Properties::const_iterator it;
|
||||
|
||||
_ostr << vprops_.size() << " vprops:\n";
|
||||
for (it=vps.begin(); it!=vps.end(); ++it)
|
||||
{
|
||||
*it == NULL ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr);
|
||||
}
|
||||
_ostr << hprops_.size() << " hprops:\n";
|
||||
for (it=hps.begin(); it!=hps.end(); ++it)
|
||||
{
|
||||
*it == NULL ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr);
|
||||
}
|
||||
_ostr << eprops_.size() << " eprops:\n";
|
||||
for (it=eps.begin(); it!=eps.end(); ++it)
|
||||
{
|
||||
*it == NULL ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr);
|
||||
}
|
||||
_ostr << fprops_.size() << " fprops:\n";
|
||||
for (it=fps.begin(); it!=fps.end(); ++it)
|
||||
{
|
||||
*it == NULL ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr);
|
||||
}
|
||||
_ostr << mprops_.size() << " mprops:\n";
|
||||
for (it=mps.begin(); it!=mps.end(); ++it)
|
||||
{
|
||||
*it == NULL ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user