Visualization Library 2.0.0

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
DoubleVertexRemover.hpp
Go to the documentation of this file.
1 /**************************************************************************************/
2 /* */
3 /* Visualization Library */
4 /* http://visualizationlibrary.org */
5 /* */
6 /* Copyright (c) 2005-2020, Michele Bosi */
7 /* All rights reserved. */
8 /* */
9 /* Redistribution and use in source and binary forms, with or without modification, */
10 /* are permitted provided that the following conditions are met: */
11 /* */
12 /* - Redistributions of source code must retain the above copyright notice, this */
13 /* list of conditions and the following disclaimer. */
14 /* */
15 /* - Redistributions in binary form must reproduce the above copyright notice, this */
16 /* list of conditions and the following disclaimer in the documentation and/or */
17 /* other materials provided with the distribution. */
18 /* */
19 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND */
20 /* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED */
21 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
22 /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR */
23 /* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES */
24 /* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; */
25 /* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
26 /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
27 /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */
28 /* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
29 /* */
30 /**************************************************************************************/
31 
32 #ifndef DoubleVertexRemover_INCLUDE_ONCE
33 #define DoubleVertexRemover_INCLUDE_ONCE
34 
35 #include <vlGraphics/Geometry.hpp>
36 #include <vector>
37 
38 namespace vl
39 {
40  //-----------------------------------------------------------------------------
41  // VertexMapper
42  //-----------------------------------------------------------------------------
45  {
47 
48  public:
53  ref<ArrayAbstract> regenerate(ArrayAbstract* data, const std::vector<u32>& map_new_to_old) const;
54  private:
55  template<class T>
56  ref<ArrayAbstract> regenerateT(ArrayAbstract* data, const std::vector<u32>& map_new_to_old) const;
57  };
58  //-----------------------------------------------------------------------------
59  // DoubleVertexRemover
60  //-----------------------------------------------------------------------------
64  {
66 
67  public:
69  void removeDoubles(Geometry* geom);
70  const std::vector<u32>& mapNewToOld() const { return mMapNewToOld; }
71  const std::vector<u32>& mapOldToNew() const { return mMapOldToNew; }
72 
73  protected:
74  std::vector<u32> mMapNewToOld;
75  std::vector<u32> mMapOldToNew;
76  };
77 }
78 
79 #endif
The ArrayAbstract class defines an abstract interface to conveniently manipulate data stored in a Buf...
Definition: Array.hpp:58
Generates a set of new vertices from the old one.
Removes from a Geometry the vertices with the same attributes.
const std::vector< u32 > & mapOldToNew() const
#define VL_INSTRUMENT_CLASS(ClassName, BaseClass)
Definition: TypeInfo.hpp:122
The Geometry class is a Renderable that implements a polygonal mesh made of polygons, lines and points.
Definition: Geometry.hpp:66
Visualization Library main namespace.
The base class for all the reference counted objects.
Definition: Object.hpp:158
The ref<> class is used to reference-count an Object.
Definition: Object.hpp:55
const std::vector< u32 > & mapNewToOld() const
std::vector< u32 > mMapOldToNew
std::vector< u32 > mMapNewToOld