/******************************************************************************* * CGoGN: Combinatorial and Geometric modeling with Generic N-dimensional Maps * * version 0.1 * * Copyright (C) 2009-2012, IGG Team, LSIIT, University of Strasbourg * * * * 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; either version 2.1 of the License, or (at your * * option) any later version. * * * * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * * * Web site: http://cgogn.unistra.fr/ * * Contact information: cgogn@unistra.fr * * * *******************************************************************************/ #ifndef __MAP2MR_PRIMAL_ADAPT__ #define __MAP2MR_PRIMAL_ADAPT__ #include "Topology/map/embeddedMap2.h" #include "Topology/generic/traversorCell.h" #include "Topology/generic/traversor2.h" #include namespace CGoGN { class Map2MR_PrimalAdapt : public EmbeddedMap2 { protected: bool shareVertexEmbeddings ; FunctorType* vertexVertexFunctor ; FunctorType* edgeVertexFunctor ; FunctorType* faceVertexFunctor ; public: Map2MR_PrimalAdapt() ; virtual std::string mapTypeName() const { return "Map2MR_PrimalAdapt" ; } /*************************************************** * CELLS INFORMATION * ***************************************************/ /** * Return the level of the edge of d in the current level map */ unsigned int edgeLevel(Dart d) ; /** * Return the level of the face of d in the current level map */ unsigned int faceLevel(Dart d) ; /** * Given the face of d in the current level map, * return a level 0 dart of its origin face */ Dart faceOrigin(Dart d) ; /** * Return the oldest dart of the face of d in the current level map */ Dart faceOldestDart(Dart d) ; /** * Return true if the edge of d in the current level map * has already been subdivided to the next level */ bool edgeIsSubdivided(Dart d) ; /** * Return true if the edge of d in the current level map * is subdivided to the next level, * none of its resulting edges is in turn subdivided to the next level * and the middle vertex is of degree 2 */ bool edgeCanBeCoarsened(Dart d) ; /** * Return true if the face of d in the current level map * has already been subdivided to the next level */ bool faceIsSubdivided(Dart d) ; /** * Return true if the face of d in the current level map * is subdivided to the next level * and none of its resulting faces is in turn subdivided to the next level */ bool faceIsSubdividedOnce(Dart d) ; /*************************************************** * SUBDIVISION * ***************************************************/ /** * add a new resolution level */ void addNewLevel(bool embedNewVertices = true) ; void propagateDartRelation(Dart d, AttributeMultiVector* rel) ; void propagateDartEmbedding(Dart d, unsigned int orbit) ; void propagateOrbitEmbedding(Dart d, unsigned int orbit) ; Dart cutEdge(Dart d) ; void splitFace(Dart d, Dart e) ; protected: /** * subdivide the edge of d to the next level */ void subdivideEdge(Dart d) ; /** * coarsen the edge of d from the next level */ void coarsenEdge(Dart d) ; public: /** * subdivide the face of d to the next level */ unsigned int subdivideFace(Dart d) ; /** * coarsen the face of d from the next level */ void coarsenFace(Dart d) ; /** * vertices attributes management */ void setVertexVertexFunctor(FunctorType* f) { vertexVertexFunctor = f ; } void setEdgeVertexFunctor(FunctorType* f) { edgeVertexFunctor = f ; } void setFaceVertexFunctor(FunctorType* f) { faceVertexFunctor = f ; } } ; } // namespace CGoGN #endif