├── branches ├── OpenMesh-2.4.1 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulator_functions.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── nav_code1.cc │ │ │ ├── nav_code2.cc │ │ │ ├── nav_code3.cc │ │ │ ├── nav_code4.cc │ │ │ ├── nav_code4a.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 07b-delete_geometry │ │ │ │ └── delete_geometry.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ ├── ACGMakefile │ │ │ └── CMakeLists.txt │ │ ├── changelog.docu │ │ ├── decimater.docu │ │ ├── doxy.config.in │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ └── acg_icon.gif │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ ├── iomanager.png │ │ │ ├── mesh.collapse.png │ │ │ ├── mesh.flip.png │ │ │ ├── mesh.inner.png │ │ │ ├── mesh.inout.png │ │ │ ├── mesh.normal.png │ │ │ ├── mesh.opp.png │ │ │ ├── mesh.outer.png │ │ │ ├── om-format.png │ │ │ └── src │ │ │ │ ├── iomanager.tex │ │ │ │ ├── mesh.collapse.tex │ │ │ │ ├── mesh.flip.tex │ │ │ │ ├── mesh.inner.tex │ │ │ │ ├── mesh.io.tex │ │ │ │ ├── mesh.normal.tex │ │ │ │ ├── mesh.opp.tex │ │ │ │ └── mesh.outer.tex │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── navigation.docu │ │ ├── operations.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_07b.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_build.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ │ ├── COPYING │ │ ├── COPYING.EXCEPTIONS │ │ ├── COPYING.LESSER │ │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── VS2008OpenMesh.sln │ ├── cmake │ │ ├── ACGCommon.cmake │ │ ├── ACGCompiler.cmake │ │ ├── ACGDoxygen.cmake │ │ ├── ACGOutput.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGLUT.cmake │ │ ├── FindGoogleTest.cmake │ │ ├── FindOpenMP.cmake │ │ ├── OpenMeshPackage.cmake │ │ ├── fixbundle.cmake.in │ │ └── fixbundle.cmake.win.in │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ ├── src │ │ ├── OpenMesh │ │ │ ├── ACGMakefile │ │ │ ├── ACGMakefile.proj │ │ │ ├── Apps │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimating │ │ │ │ │ ├── CmdOption.hh │ │ │ │ │ ├── DecimaterGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ │ ├── commandlineDecimater │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ │ ├── decimater.cc │ │ │ │ │ └── decimaterviewer.cc │ │ │ │ ├── Dualizer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── dualizer.cc │ │ │ │ ├── ProgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ │ └── progviewer.cc │ │ │ │ ├── QtViewer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── QtViewer.pro │ │ │ │ │ └── meshviewer.cc │ │ │ │ ├── Smoothing │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Smoothing.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Subdivider │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ │ ├── SubdividerGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ │ ├── qtsubdivider.cc │ │ │ │ │ └── subdivider.cc │ │ │ │ ├── Unsupported │ │ │ │ │ ├── IvViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ │ └── ivviewer.cc │ │ │ │ │ ├── OsgViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ │ └── osgviewer.cc │ │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ │ └── Server │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ │ └── Streaming │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ │ ├── VDProgMesh │ │ │ │ │ ├── Analyzer │ │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ │ ├── Synthesizer │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ │ └── mkbalancedpm │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ │ └── mkbalancedpm.pro │ │ │ │ └── mconvert │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ │ ├── mconvert.cc │ │ │ │ │ └── mconvert.pro │ │ │ ├── Core │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Core.pro │ │ │ │ ├── Geometry │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Config.hh │ │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ │ ├── MathDefs.hh │ │ │ │ │ ├── NormalConeT.cc │ │ │ │ │ ├── NormalConeT.hh │ │ │ │ │ ├── Plane3d.hh │ │ │ │ │ ├── QuadricT.hh │ │ │ │ │ ├── VectorT.hh │ │ │ │ │ └── VectorT_inc.hh │ │ │ │ ├── IO │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BinaryHelper.cc │ │ │ │ │ ├── BinaryHelper.hh │ │ │ │ │ ├── IOInstances.hh │ │ │ │ │ ├── IOManager.cc │ │ │ │ │ ├── IOManager.hh │ │ │ │ │ ├── MeshIO.hh │ │ │ │ │ ├── OFFFormat.hh │ │ │ │ │ ├── OMFormat.cc │ │ │ │ │ ├── OMFormat.hh │ │ │ │ │ ├── OMFormatT.cc │ │ │ │ │ ├── Options.hh │ │ │ │ │ ├── SR_binary.hh │ │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ │ ├── SR_rbo.hh │ │ │ │ │ ├── SR_store.hh │ │ │ │ │ ├── SR_types.hh │ │ │ │ │ ├── StoreRestore.hh │ │ │ │ │ ├── exporter │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ │ └── ExporterT.hh │ │ │ │ │ ├── importer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ │ └── ImporterT.hh │ │ │ │ │ ├── reader │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ │ └── STLReader.hh │ │ │ │ │ └── writer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ │ └── STLWriter.hh │ │ │ │ ├── Mesh │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ArrayItems.hh │ │ │ │ │ ├── ArrayKernel.cc │ │ │ │ │ ├── ArrayKernel.hh │ │ │ │ │ ├── ArrayKernelT.cc │ │ │ │ │ ├── AttribKernelT.hh │ │ │ │ │ ├── Attributes.hh │ │ │ │ │ ├── BaseKernel.cc │ │ │ │ │ ├── BaseKernel.hh │ │ │ │ │ ├── BaseMesh.hh │ │ │ │ │ ├── Casts.hh │ │ │ │ │ ├── CirculatorsT.hh │ │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ │ ├── Handles.hh │ │ │ │ │ ├── IteratorsT.hh │ │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ │ ├── PolyMeshT.cc │ │ │ │ │ ├── PolyMeshT.hh │ │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ │ ├── Status.hh │ │ │ │ │ ├── Traits.hh │ │ │ │ │ ├── TriConnectivity.cc │ │ │ │ │ ├── TriConnectivity.hh │ │ │ │ │ ├── TriMeshT.cc │ │ │ │ │ ├── TriMeshT.hh │ │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ │ └── gen │ │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ │ ├── footer.hh │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ │ └── iterators_template.hh │ │ │ │ ├── System │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── OpenMeshDLLMacros.hh │ │ │ │ │ ├── compiler.hh │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config.hh │ │ │ │ │ ├── mostream.hh │ │ │ │ │ ├── omstream.cc │ │ │ │ │ └── omstream.hh │ │ │ │ ├── Templates │ │ │ │ │ ├── newClass.cc │ │ │ │ │ ├── newClass.hh │ │ │ │ │ ├── newClass.sh │ │ │ │ │ ├── newClassT.cc │ │ │ │ │ ├── newClassT.hh │ │ │ │ │ └── newClassT.sh │ │ │ │ ├── Utils │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ │ ├── BaseProperty.cc │ │ │ │ │ ├── BaseProperty.hh │ │ │ │ │ ├── Endian.cc │ │ │ │ │ ├── Endian.hh │ │ │ │ │ ├── GenProg.hh │ │ │ │ │ ├── Noncopyable.hh │ │ │ │ │ ├── Property.hh │ │ │ │ │ ├── PropertyContainer.hh │ │ │ │ │ ├── PropertyManager.hh │ │ │ │ │ ├── RandomNumberGenerator.cc │ │ │ │ │ ├── RandomNumberGenerator.hh │ │ │ │ │ ├── SingletonT.cc │ │ │ │ │ ├── SingletonT.hh │ │ │ │ │ ├── color_cast.hh │ │ │ │ │ ├── vector_cast.hh │ │ │ │ │ └── vector_traits.hh │ │ │ │ └── VS2008Core.vcproj │ │ │ ├── Examples │ │ │ │ ├── Examples.pro │ │ │ │ ├── Tutorial01 │ │ │ │ │ ├── Tutorial01.pro │ │ │ │ │ └── cube.cc │ │ │ │ ├── Tutorial02 │ │ │ │ │ ├── Tutorial02.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial03 │ │ │ │ │ ├── Tutorial03.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial04 │ │ │ │ │ ├── Tutorial04.pro │ │ │ │ │ ├── smooth.cc │ │ │ │ │ └── smooth_algo.hh │ │ │ │ ├── Tutorial05 │ │ │ │ │ ├── Tutorial05.pro │ │ │ │ │ └── properties.cc │ │ │ │ ├── Tutorial06 │ │ │ │ │ ├── Tutorial06.pro │ │ │ │ │ └── attributes.cc │ │ │ │ ├── Tutorial07 │ │ │ │ │ ├── Tutorial07.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial08 │ │ │ │ │ ├── Tutorial08.pro │ │ │ │ │ └── delete_geometry.cc │ │ │ │ ├── Tutorial09 │ │ │ │ │ ├── Tutorial09.pro │ │ │ │ │ └── io_options.cc │ │ │ │ └── Tutorial10 │ │ │ │ │ ├── Tutorial10.pro │ │ │ │ │ ├── fill_props.hh │ │ │ │ │ ├── generate_cube.hh │ │ │ │ │ ├── int2roman.cc │ │ │ │ │ ├── int2roman.hh │ │ │ │ │ ├── persistence.cc │ │ │ │ │ └── stats.hh │ │ │ └── Tools │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimater │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseDecimaterT.cc │ │ │ │ ├── BaseDecimaterT.hh │ │ │ │ ├── CollapseInfoT.hh │ │ │ │ ├── DecimaterT.cc │ │ │ │ ├── DecimaterT.hh │ │ │ │ ├── McDecimaterT.cc │ │ │ │ ├── McDecimaterT.hh │ │ │ │ ├── MixedDecimaterT.cc │ │ │ │ ├── MixedDecimaterT.hh │ │ │ │ ├── ModAspectRatioT.cc │ │ │ │ ├── ModAspectRatioT.hh │ │ │ │ ├── ModBaseT.hh │ │ │ │ ├── ModEdgeLengthT.cc │ │ │ │ ├── ModEdgeLengthT.hh │ │ │ │ ├── ModHausdorffT.cc │ │ │ │ ├── ModHausdorffT.hh │ │ │ │ ├── ModIndependentSetsT.hh │ │ │ │ ├── ModNormalDeviationT.hh │ │ │ │ ├── ModNormalFlippingT.hh │ │ │ │ ├── ModProgMeshT.cc │ │ │ │ ├── ModProgMeshT.hh │ │ │ │ ├── ModQuadricT.cc │ │ │ │ ├── ModQuadricT.hh │ │ │ │ └── ModRoundnessT.hh │ │ │ │ ├── Dualizer │ │ │ │ └── meshDualT.hh │ │ │ │ ├── Kernel_OSG │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayKernelT.hh │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── PropertyKernel.hh │ │ │ │ ├── PropertyT.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ │ ├── VectorAdapter.hh │ │ │ │ ├── bindT.hh │ │ │ │ └── color_cast.hh │ │ │ │ ├── Smoother │ │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ │ ├── LaplaceSmootherT.cc │ │ │ │ ├── LaplaceSmootherT.hh │ │ │ │ ├── SmootherT.cc │ │ │ │ ├── SmootherT.hh │ │ │ │ └── smooth_mesh.hh │ │ │ │ ├── Subdivider │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Adaptive │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ └── Composite │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ │ └── Traits.hh │ │ │ │ └── Uniform │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CatmullClarkT.cc │ │ │ │ │ ├── CatmullClarkT.hh │ │ │ │ │ ├── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ └── CompositeTraits.hh │ │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ │ ├── LongestEdgeT.hh │ │ │ │ │ ├── LoopT.hh │ │ │ │ │ ├── ModifiedButterFlyT.hh │ │ │ │ │ ├── Sqrt3InterpolatingSubdividerLabsikGreinerT.hh │ │ │ │ │ ├── Sqrt3T.hh │ │ │ │ │ └── SubdividerT.hh │ │ │ │ ├── Tools.pro │ │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── GLConstAsString.hh │ │ │ │ ├── Gnuplot.cc │ │ │ │ ├── Gnuplot.hh │ │ │ │ ├── HeapT.hh │ │ │ │ ├── MeshCheckerT.cc │ │ │ │ ├── MeshCheckerT.hh │ │ │ │ ├── NumLimitsT.hh │ │ │ │ ├── StripifierT.cc │ │ │ │ ├── StripifierT.hh │ │ │ │ ├── TestingFramework.hh │ │ │ │ ├── Timer.cc │ │ │ │ ├── Timer.hh │ │ │ │ ├── conio.cc │ │ │ │ ├── conio.hh │ │ │ │ ├── getopt.c │ │ │ │ └── getopt.h │ │ │ │ ├── VDPM │ │ │ │ ├── ACGMakefile │ │ │ │ ├── MeshTraits.hh │ │ │ │ ├── StreamingDef.hh │ │ │ │ ├── VFront.cc │ │ │ │ ├── VFront.hh │ │ │ │ ├── VHierarchy.cc │ │ │ │ ├── VHierarchy.hh │ │ │ │ ├── VHierarchyNode.hh │ │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ │ ├── VHierarchyWindow.cc │ │ │ │ ├── VHierarchyWindow.hh │ │ │ │ ├── ViewingParameters.cc │ │ │ │ ├── ViewingParameters.hh │ │ │ │ └── xpm │ │ │ │ │ ├── fileopen.xpm │ │ │ │ │ ├── fileprint.xpm │ │ │ │ │ └── filesave.xpm │ │ │ │ └── VS2008Tools.vcproj │ │ └── Unittests │ │ │ ├── CMakeLists.txt │ │ │ ├── TestFiles │ │ │ ├── cube-minimal-normals.ply │ │ │ ├── cube-minimal-texCoords.obj │ │ │ ├── cube-minimal-texCoords.om │ │ │ ├── cube-minimal-texCoords.ply │ │ │ ├── cube-minimal-vertex-colors-after-vertex-definition.obj │ │ │ ├── cube-minimal-vertex-colors-as-vc-lines.obj │ │ │ ├── cube-minimal-vertexColors.om │ │ │ ├── cube-minimal-vertexColors.ply │ │ │ ├── cube-minimal.obj │ │ │ ├── cube-minimal.om │ │ │ ├── cube-minimal.ply │ │ │ ├── cube1.off │ │ │ ├── cube1.stl │ │ │ ├── cube1Binary.stl │ │ │ ├── cube1_customProps.om │ │ │ ├── meshlab.ply │ │ │ ├── pointCloudBadEncoding.ply │ │ │ ├── pointCloudGoodEncoding.ply │ │ │ ├── square_material.mtl │ │ │ └── square_material.obj │ │ │ ├── unittests.cc │ │ │ ├── unittests_add_face.hh │ │ │ ├── unittests_boundary.hh │ │ │ ├── unittests_common.hh │ │ │ ├── unittests_decimater.hh │ │ │ ├── unittests_delete_face.hh │ │ │ ├── unittests_faceless_mesh.hh │ │ │ ├── unittests_mc_decimater.hh │ │ │ ├── unittests_mixed_decimater.hh │ │ │ ├── unittests_property.hh │ │ │ ├── unittests_randomNumberGenerator.hh │ │ │ ├── unittests_read_write_OBJ.hh │ │ │ ├── unittests_read_write_OFF.hh │ │ │ ├── unittests_read_write_OM.hh │ │ │ ├── unittests_read_write_PLY.hh │ │ │ ├── unittests_read_write_STL.hh │ │ │ ├── unittests_split_copy.hh │ │ │ ├── unittests_subdivider_adaptive.hh │ │ │ ├── unittests_subdivider_uniform.hh │ │ │ ├── unittests_trimesh_circulator_face_edge.hh │ │ │ ├── unittests_trimesh_circulator_face_face.hh │ │ │ ├── unittests_trimesh_circulator_face_halfedge.hh │ │ │ ├── unittests_trimesh_circulator_face_vertex.hh │ │ │ ├── unittests_trimesh_circulator_vertex_edge.hh │ │ │ ├── unittests_trimesh_circulator_vertex_face.hh │ │ │ ├── unittests_trimesh_circulator_vertex_ihalfedge.hh │ │ │ ├── unittests_trimesh_circulator_vertex_ohalfedge.hh │ │ │ ├── unittests_trimesh_circulator_vertex_vertex.hh │ │ │ ├── unittests_trimesh_collapse.hh │ │ │ ├── unittests_trimesh_garbage_collection.hh │ │ │ ├── unittests_trimesh_iterators.hh │ │ │ ├── unittests_trimesh_normal_calculations.hh │ │ │ ├── unittests_trimesh_others.hh │ │ │ └── unittests_vector_type.hh │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh └── OpenMesh-Python │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ ├── ACGMakefile │ ├── CMakeLists.txt │ ├── Concepts │ │ ├── MeshItems.hh │ │ └── MeshKernel.hh │ ├── Examples │ │ ├── BaseExporter.hh │ │ ├── BaseImporter.hh │ │ ├── BaseReader.hh │ │ ├── adasub.cc │ │ ├── build-trimesh.cc │ │ ├── circulator_functions.cc │ │ ├── circulators.cc │ │ ├── decimater.cc │ │ ├── draw_normals.cc │ │ ├── iterators.cc │ │ ├── mesh_io.cc │ │ ├── mymesh.cc │ │ ├── nav_code1.cc │ │ ├── nav_code2.cc │ │ ├── nav_code3.cc │ │ ├── nav_code4.cc │ │ ├── nav_code4a.cc │ │ ├── nav_code_to_from.cc │ │ ├── python_tutorial.py │ │ ├── traits0.cc │ │ ├── traits1.cc │ │ ├── traits2.cc │ │ ├── traits3.cc │ │ ├── traits4.cc │ │ └── traits5.cc │ ├── Tutorial │ │ ├── 01-build_cube │ │ │ ├── ACGMakefile │ │ │ └── build_cube.cc │ │ ├── 02-iterators │ │ │ ├── ACGMakefile │ │ │ └── smooth.cc │ │ ├── 03-properties │ │ │ ├── ACGMakefile │ │ │ └── smooth.cc │ │ ├── 04-stl_algorithms │ │ │ ├── ACGMakefile │ │ │ ├── smooth.cc │ │ │ └── smooth_algo.hh │ │ ├── 05-std_properties │ │ │ ├── ACGMakefile │ │ │ └── properties.cc │ │ ├── 06-attributes │ │ │ ├── ACGMakefile │ │ │ └── attributes.cc │ │ ├── 07-traits │ │ │ ├── ACGMakefile │ │ │ └── smooth.cc │ │ ├── 07b-delete_geometry │ │ │ └── delete_geometry.cc │ │ ├── 08-io_options │ │ │ ├── ACGMakefile │ │ │ └── io_options.cc │ │ ├── 09-persistence │ │ │ ├── ACGMakefile │ │ │ ├── fill_props.hh │ │ │ ├── generate_cube.hh │ │ │ ├── int2roman.cc │ │ │ ├── int2roman.hh │ │ │ ├── persistence.cc │ │ │ └── stats.hh │ │ ├── ACGMakefile │ │ └── CMakeLists.txt │ ├── changelog.docu │ ├── decimater.docu │ ├── doxy.config.in │ ├── html │ │ ├── acg_footer.html │ │ └── acg_logo.png │ ├── images │ │ ├── acg_logo_small.png │ │ ├── class-hierarchy.png │ │ ├── class-hierarchy2.png │ │ ├── collapse_info.png │ │ ├── diagrams.sxi │ │ ├── halfedge_structure.gif │ │ ├── halfedge_structure2.png │ │ ├── halfedge_structure3.png │ │ ├── inheritance-simple.png │ │ ├── inheritance-simple.scaled.png │ │ ├── inheritance.fig │ │ ├── inheritance.gif │ │ ├── iomanager.gif │ │ ├── iomanager.png │ │ ├── mesh.collapse.png │ │ ├── mesh.flip.png │ │ ├── mesh.inner.png │ │ ├── mesh.inout.png │ │ ├── mesh.normal.png │ │ ├── mesh.opp.png │ │ ├── mesh.outer.png │ │ ├── mesh.to.from.png │ │ ├── om-format.png │ │ └── src │ │ │ ├── iomanager.tex │ │ │ ├── mesh.collapse.tex │ │ │ ├── mesh.flip.tex │ │ │ ├── mesh.inner.tex │ │ │ ├── mesh.io.tex │ │ │ ├── mesh.normal.tex │ │ │ ├── mesh.opp.tex │ │ │ ├── mesh.outer.tex │ │ │ └── mesh.to.from.tex │ ├── mainpage.docu │ ├── mesh.docu │ ├── misc.docu │ ├── namespaces.docu │ ├── navigation.docu │ ├── operations.docu │ ├── python_tutorial.docu │ ├── subdivider.docu │ ├── tools.docu │ ├── tutorial_01.docu │ ├── tutorial_02.docu │ ├── tutorial_03.docu │ ├── tutorial_04.docu │ ├── tutorial_05.docu │ ├── tutorial_06.docu │ ├── tutorial_07.docu │ ├── tutorial_07b.docu │ ├── tutorial_08.docu │ ├── tutorial_09.docu │ ├── tutorial_build.docu │ ├── tutorial_main.docu │ └── vdpm.docu │ ├── LICENSE │ ├── COPYING │ ├── COPYING.EXCEPTIONS │ ├── COPYING.LESSER │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── cmake │ ├── ACGCommon.cmake │ ├── ACGCompiler.cmake │ ├── ACGDoxygen.cmake │ ├── ACGOutput.cmake │ ├── FindGLEW.cmake │ ├── FindGLUT.cmake │ ├── FindGoogleTest.cmake │ ├── FindOpenMP.cmake │ ├── FindOpenMesh.cmake │ ├── OpenMeshPackage.cmake │ ├── fixbundle.cmake.in │ └── fixbundle.cmake.win.in │ ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ └── rules │ ├── qmake │ ├── all.include │ ├── architecture.include │ ├── compiler.include │ ├── functions.include │ ├── packages │ │ ├── packages.Darwin │ │ ├── packages.Linux │ │ └── packages.Windows │ └── targets.include │ ├── release.howto │ ├── src │ ├── OpenMesh │ │ ├── ACGMakefile │ │ ├── ACGMakefile.proj │ │ ├── Apps │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimating │ │ │ │ ├── CmdOption.hh │ │ │ │ ├── DecimaterGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ ├── commandlineDecimater │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ ├── decimater.cc │ │ │ │ └── decimaterviewer.cc │ │ │ ├── Dualizer │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── dualizer.cc │ │ │ ├── ProgViewer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ └── progviewer.cc │ │ │ ├── QtViewer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ ├── QtViewer.pro │ │ │ │ └── meshviewer.cc │ │ │ ├── Smoothing │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Smoothing.pro │ │ │ │ └── smooth.cc │ │ │ ├── Subdivider │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ ├── SubdividerGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ ├── qtsubdivider.cc │ │ │ │ └── subdivider.cc │ │ │ ├── Unsupported │ │ │ │ ├── IvViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ └── ivviewer.cc │ │ │ │ ├── OsgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── README │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ └── osgviewer.cc │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ └── Streaming │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ └── Server │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ ├── VDProgMesh │ │ │ │ ├── Analyzer │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ ├── Synthesizer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ └── mkbalancedpm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ └── mkbalancedpm.pro │ │ │ └── mconvert │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ ├── mconvert.cc │ │ │ │ └── mconvert.pro │ │ ├── Core │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Core.pro │ │ │ ├── Geometry │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ ├── MathDefs.hh │ │ │ │ ├── NormalConeT.cc │ │ │ │ ├── NormalConeT.hh │ │ │ │ ├── Plane3d.hh │ │ │ │ ├── QuadricT.hh │ │ │ │ ├── VectorT.hh │ │ │ │ └── VectorT_inc.hh │ │ │ ├── IO │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BinaryHelper.cc │ │ │ │ ├── BinaryHelper.hh │ │ │ │ ├── IOInstances.hh │ │ │ │ ├── IOManager.cc │ │ │ │ ├── IOManager.hh │ │ │ │ ├── MeshIO.hh │ │ │ │ ├── OFFFormat.hh │ │ │ │ ├── OMFormat.cc │ │ │ │ ├── OMFormat.hh │ │ │ │ ├── OMFormatT.cc │ │ │ │ ├── Options.hh │ │ │ │ ├── SR_binary.hh │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ ├── SR_rbo.hh │ │ │ │ ├── SR_store.hh │ │ │ │ ├── SR_types.hh │ │ │ │ ├── StoreRestore.hh │ │ │ │ ├── exporter │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ └── ExporterT.hh │ │ │ │ ├── importer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ └── ImporterT.hh │ │ │ │ ├── reader │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ └── STLReader.hh │ │ │ │ └── writer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ ├── STLWriter.hh │ │ │ │ │ ├── VTKWriter.cc │ │ │ │ │ └── VTKWriter.hh │ │ │ ├── Mesh │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayItems.hh │ │ │ │ ├── ArrayKernel.cc │ │ │ │ ├── ArrayKernel.hh │ │ │ │ ├── ArrayKernelT.cc │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── Attributes.hh │ │ │ │ ├── BaseKernel.cc │ │ │ │ ├── BaseKernel.hh │ │ │ │ ├── BaseMesh.hh │ │ │ │ ├── Casts.hh │ │ │ │ ├── CirculatorsT.hh │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ ├── Handles.hh │ │ │ │ ├── IteratorsT.hh │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ ├── PolyMeshT.cc │ │ │ │ ├── PolyMeshT.hh │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ ├── Status.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriConnectivity.cc │ │ │ │ ├── TriConnectivity.hh │ │ │ │ ├── TriMeshT.cc │ │ │ │ ├── TriMeshT.hh │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ └── gen │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ ├── footer.hh │ │ │ │ │ ├── generate.sh │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ └── iterators_template.hh │ │ │ ├── System │ │ │ │ ├── ACGMakefile │ │ │ │ ├── OpenMeshDLLMacros.hh │ │ │ │ ├── compiler.hh │ │ │ │ ├── config.h │ │ │ │ ├── config.hh │ │ │ │ ├── mostream.hh │ │ │ │ ├── omstream.cc │ │ │ │ └── omstream.hh │ │ │ ├── Templates │ │ │ │ ├── newClass.cc │ │ │ │ ├── newClass.hh │ │ │ │ ├── newClass.sh │ │ │ │ ├── newClassT.cc │ │ │ │ ├── newClassT.hh │ │ │ │ └── newClassT.sh │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ ├── BaseProperty.cc │ │ │ │ ├── BaseProperty.hh │ │ │ │ ├── Endian.cc │ │ │ │ ├── Endian.hh │ │ │ │ ├── GenProg.hh │ │ │ │ ├── Noncopyable.hh │ │ │ │ ├── Property.hh │ │ │ │ ├── PropertyContainer.hh │ │ │ │ ├── PropertyManager.hh │ │ │ │ ├── RandomNumberGenerator.cc │ │ │ │ ├── RandomNumberGenerator.hh │ │ │ │ ├── SingletonT.cc │ │ │ │ ├── SingletonT.hh │ │ │ │ ├── color_cast.hh │ │ │ │ ├── vector_cast.hh │ │ │ │ └── vector_traits.hh │ │ │ └── VS2008Core.vcproj │ │ ├── Examples │ │ │ ├── Examples.pro │ │ │ ├── Tutorial01 │ │ │ │ ├── Tutorial01.pro │ │ │ │ └── cube.cc │ │ │ ├── Tutorial02 │ │ │ │ ├── Tutorial02.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial03 │ │ │ │ ├── Tutorial03.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial04 │ │ │ │ ├── Tutorial04.pro │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── Tutorial05 │ │ │ │ ├── Tutorial05.pro │ │ │ │ └── properties.cc │ │ │ ├── Tutorial06 │ │ │ │ ├── Tutorial06.pro │ │ │ │ └── attributes.cc │ │ │ ├── Tutorial07 │ │ │ │ ├── Tutorial07.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial08 │ │ │ │ ├── Tutorial08.pro │ │ │ │ └── delete_geometry.cc │ │ │ ├── Tutorial09 │ │ │ │ ├── Tutorial09.pro │ │ │ │ └── io_options.cc │ │ │ └── Tutorial10 │ │ │ │ ├── Tutorial10.pro │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ └── Tools │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimater │ │ │ ├── ACGMakefile │ │ │ ├── BaseDecimaterT.cc │ │ │ ├── BaseDecimaterT.hh │ │ │ ├── CollapseInfoT.hh │ │ │ ├── DecimaterT.cc │ │ │ ├── DecimaterT.hh │ │ │ ├── McDecimaterT.cc │ │ │ ├── McDecimaterT.hh │ │ │ ├── MixedDecimaterT.cc │ │ │ ├── MixedDecimaterT.hh │ │ │ ├── ModAspectRatioT.cc │ │ │ ├── ModAspectRatioT.hh │ │ │ ├── ModBaseT.hh │ │ │ ├── ModEdgeLengthT.cc │ │ │ ├── ModEdgeLengthT.hh │ │ │ ├── ModHausdorffT.cc │ │ │ ├── ModHausdorffT.hh │ │ │ ├── ModIndependentSetsT.hh │ │ │ ├── ModNormalDeviationT.hh │ │ │ ├── ModNormalFlippingT.hh │ │ │ ├── ModProgMeshT.cc │ │ │ ├── ModProgMeshT.hh │ │ │ ├── ModQuadricT.cc │ │ │ ├── ModQuadricT.hh │ │ │ └── ModRoundnessT.hh │ │ │ ├── Dualizer │ │ │ └── meshDualT.hh │ │ │ ├── Kernel_OSG │ │ │ ├── ACGMakefile │ │ │ ├── ArrayKernelT.hh │ │ │ ├── AttribKernelT.hh │ │ │ ├── PropertyKernel.hh │ │ │ ├── PropertyT.hh │ │ │ ├── Traits.hh │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ ├── VectorAdapter.hh │ │ │ ├── bindT.hh │ │ │ └── color_cast.hh │ │ │ ├── Smoother │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ ├── LaplaceSmootherT.cc │ │ │ ├── LaplaceSmootherT.hh │ │ │ ├── SmootherT.cc │ │ │ ├── SmootherT.hh │ │ │ └── smooth_mesh.hh │ │ │ ├── Subdivider │ │ │ ├── ACGMakefile │ │ │ ├── Adaptive │ │ │ │ ├── ACGMakefile │ │ │ │ └── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ └── Traits.hh │ │ │ └── Uniform │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CatmullClarkT.cc │ │ │ │ ├── CatmullClarkT.hh │ │ │ │ ├── Composite │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CompositeT.cc │ │ │ │ ├── CompositeT.hh │ │ │ │ └── CompositeTraits.hh │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ ├── LongestEdgeT.hh │ │ │ │ ├── LoopT.hh │ │ │ │ ├── ModifiedButterFlyT.hh │ │ │ │ ├── Sqrt3InterpolatingSubdividerLabsikGreinerT.hh │ │ │ │ ├── Sqrt3T.hh │ │ │ │ └── SubdividerT.hh │ │ │ ├── Tools.pro │ │ │ ├── Utils │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── GLConstAsString.hh │ │ │ ├── Gnuplot.cc │ │ │ ├── Gnuplot.hh │ │ │ ├── HeapT.hh │ │ │ ├── MeshCheckerT.cc │ │ │ ├── MeshCheckerT.hh │ │ │ ├── NumLimitsT.hh │ │ │ ├── StripifierT.cc │ │ │ ├── StripifierT.hh │ │ │ ├── TestingFramework.hh │ │ │ ├── Timer.cc │ │ │ ├── Timer.hh │ │ │ ├── conio.cc │ │ │ ├── conio.hh │ │ │ ├── getopt.c │ │ │ └── getopt.h │ │ │ ├── VDPM │ │ │ ├── ACGMakefile │ │ │ ├── MeshTraits.hh │ │ │ ├── StreamingDef.hh │ │ │ ├── VFront.cc │ │ │ ├── VFront.hh │ │ │ ├── VHierarchy.cc │ │ │ ├── VHierarchy.hh │ │ │ ├── VHierarchyNode.hh │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ ├── VHierarchyWindow.cc │ │ │ ├── VHierarchyWindow.hh │ │ │ ├── ViewingParameters.cc │ │ │ ├── ViewingParameters.hh │ │ │ └── xpm │ │ │ │ ├── fileopen.xpm │ │ │ │ ├── fileprint.xpm │ │ │ │ └── filesave.xpm │ │ │ └── VS2008Tools.vcproj │ ├── Python │ │ ├── Bindings.cc │ │ ├── Bindings.hh │ │ ├── CMakeLists.txt │ │ ├── Circulator.hh │ │ ├── Example │ │ │ ├── CMakeLists.txt │ │ │ └── Example.cc │ │ ├── InputOutput.hh │ │ ├── Iterator.hh │ │ ├── Mesh.hh │ │ ├── PropertyManager.hh │ │ ├── Unittests │ │ │ ├── test_add_face.py │ │ │ ├── test_boundary.py │ │ │ ├── test_delete_face.py │ │ │ ├── test_property.py │ │ │ ├── test_python.py │ │ │ ├── test_read_write_obj.py │ │ │ ├── test_read_write_off.py │ │ │ ├── test_read_write_om.py │ │ │ ├── test_read_write_ply.py │ │ │ ├── test_read_write_stl.py │ │ │ ├── test_split_copy.py │ │ │ ├── test_trimesh_circulator_current_halfedge_handle_replacement.py │ │ │ ├── test_trimesh_circulator_face_edge.py │ │ │ ├── test_trimesh_circulator_face_face.py │ │ │ ├── test_trimesh_circulator_face_halfedge.py │ │ │ ├── test_trimesh_circulator_face_vertex.py │ │ │ ├── test_trimesh_circulator_halfedge_loop.py │ │ │ ├── test_trimesh_circulator_vertex_edge.py │ │ │ ├── test_trimesh_circulator_vertex_face.py │ │ │ ├── test_trimesh_circulator_vertex_ihalfedge.py │ │ │ ├── test_trimesh_circulator_vertex_ohalfedge.py │ │ │ ├── test_trimesh_circulator_vertex_vertex.py │ │ │ ├── test_trimesh_collapse.py │ │ │ ├── test_trimesh_garbage_collection.py │ │ │ ├── test_trimesh_iterators.py │ │ │ ├── test_trimesh_normal_calculations.py │ │ │ ├── test_trimesh_others.py │ │ │ └── test_vector_type.py │ │ └── Vector.hh │ └── Unittests │ │ ├── CMakeLists.txt │ │ ├── TestFiles │ │ ├── cube-minimal-normals.ply │ │ ├── cube-minimal-texCoords.obj │ │ ├── cube-minimal-texCoords.om │ │ ├── cube-minimal-texCoords.ply │ │ ├── cube-minimal-vertex-colors-after-vertex-definition.obj │ │ ├── cube-minimal-vertex-colors-as-vc-lines.obj │ │ ├── cube-minimal-vertexColors.om │ │ ├── cube-minimal-vertexColors.ply │ │ ├── cube-minimal.obj │ │ ├── cube-minimal.om │ │ ├── cube-minimal.ply │ │ ├── cube1.off │ │ ├── cube1.stl │ │ ├── cube1Binary.stl │ │ ├── cube1_customProps.om │ │ ├── meshlab.ply │ │ ├── pointCloudBadEncoding.ply │ │ ├── pointCloudGoodEncoding.ply │ │ ├── square_material.mtl │ │ ├── square_material.obj │ │ ├── square_material_texture.mtl │ │ └── square_material_texture.obj │ │ ├── fill_props.hh │ │ ├── generate_cube.hh │ │ ├── int2roman.hh │ │ ├── unittests.cc │ │ ├── unittests_add_face.cc │ │ ├── unittests_boundary.cc │ │ ├── unittests_common.hh │ │ ├── unittests_decimater.cc │ │ ├── unittests_delete_face.cc │ │ ├── unittests_faceless_mesh.cc │ │ ├── unittests_mc_decimater.cc │ │ ├── unittests_mesh_cast.cc │ │ ├── unittests_mesh_dual.cc │ │ ├── unittests_mixed_decimater.cc │ │ ├── unittests_property.cc │ │ ├── unittests_randomNumberGenerator.cc │ │ ├── unittests_read_write_OBJ.cc │ │ ├── unittests_read_write_OFF.cc │ │ ├── unittests_read_write_OM.cc │ │ ├── unittests_read_write_PLY.cc │ │ ├── unittests_read_write_STL.cc │ │ ├── unittests_split_copy.cc │ │ ├── unittests_stripifier.cc │ │ ├── unittests_subdivider_adaptive.cc │ │ ├── unittests_subdivider_uniform.cc │ │ ├── unittests_trimesh_circulator_current_halfedge_handle_replacement.cc │ │ ├── unittests_trimesh_circulator_face_edge.cc │ │ ├── unittests_trimesh_circulator_face_face.cc │ │ ├── unittests_trimesh_circulator_face_halfedge.cc │ │ ├── unittests_trimesh_circulator_face_vertex.cc │ │ ├── unittests_trimesh_circulator_halfedge_loop.cc │ │ ├── unittests_trimesh_circulator_vertex_edge.cc │ │ ├── unittests_trimesh_circulator_vertex_face.cc │ │ ├── unittests_trimesh_circulator_vertex_ihalfedge.cc │ │ ├── unittests_trimesh_circulator_vertex_ohalfedge.cc │ │ ├── unittests_trimesh_circulator_vertex_vertex.cc │ │ ├── unittests_trimesh_collapse.cc │ │ ├── unittests_trimesh_garbage_collection.cc │ │ ├── unittests_trimesh_iterators.cc │ │ ├── unittests_trimesh_normal_calculations.cc │ │ ├── unittests_trimesh_others.cc │ │ ├── unittests_tutorials.cc │ │ └── unittests_vector_type.cc │ └── templates │ ├── cc │ ├── cpp │ ├── h │ └── hh ├── tags ├── OpenMesh-1.9.6 │ ├── ACGMakefile │ ├── ACGMakefile.proj │ ├── Apps │ │ ├── ACGMakefile │ │ ├── Decimating │ │ │ ├── ACGMakefile │ │ │ ├── CmdOption.hh │ │ │ ├── DecimaterViewerWidget.cc │ │ │ ├── DecimaterViewerWidget.hh │ │ │ ├── OpenMesh_Apps_Decimating.vcproj │ │ │ ├── decimater.cc │ │ │ └── decimaterviewer.cc │ │ ├── ProgViewer │ │ │ ├── ACGMakefile │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ ├── ProgViewerWidget.cc │ │ │ ├── ProgViewerWidget.hh │ │ │ └── progviewer.cc │ │ ├── QtViewer │ │ │ ├── ACGMakefile │ │ │ ├── MeshViewerWidget.hh │ │ │ ├── MeshViewerWidgetT.cc │ │ │ ├── MeshViewerWidgetT.hh │ │ │ ├── QGLViewerWidget.cc │ │ │ ├── QGLViewerWidget.hh │ │ │ └── meshviewer.cc │ │ ├── Smoothing │ │ │ ├── ACGMakefile │ │ │ └── smooth.cc │ │ ├── Subdivider │ │ │ ├── ACGMakefile │ │ │ ├── MeshViewerWidget.cc │ │ │ ├── MeshViewerWidget.hh │ │ │ ├── SubdivideWidget.cc │ │ │ ├── SubdivideWidget.hh │ │ │ ├── adaptive_subdivider.cc │ │ │ ├── qtsubdivider.cc │ │ │ └── subdivider.cc │ │ └── mconvert │ │ │ ├── ACGMakefile │ │ │ └── mconvert.cc │ ├── Core │ │ ├── ACGMakefile │ │ ├── Geometry │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── LoopSchemeMaskT.hh │ │ │ ├── MathDefs.hh │ │ │ ├── Plane3d.hh │ │ │ ├── QuadricT.hh │ │ │ ├── VectorT.hh │ │ │ └── VectorT_inc.hh │ │ ├── IO │ │ │ ├── ACGMakefile │ │ │ ├── BinaryHelper.cc │ │ │ ├── BinaryHelper.hh │ │ │ ├── IOInstances.hh │ │ │ ├── IOManager.cc │ │ │ ├── IOManager.hh │ │ │ ├── MeshIO.hh │ │ │ ├── OFFFormat.hh │ │ │ ├── OMFormat.cc │ │ │ ├── OMFormat.hh │ │ │ ├── Options.hh │ │ │ ├── SR_binary.hh │ │ │ ├── SR_binary_spec.hh │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ ├── SR_rbo.hh │ │ │ ├── SR_store.hh │ │ │ ├── SR_types.hh │ │ │ ├── StoreRestore.hh │ │ │ ├── exporter │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseExporter.hh │ │ │ │ └── ExporterT.hh │ │ │ ├── importer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseImporter.hh │ │ │ │ └── ImporterT.hh │ │ │ ├── reader │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseReader.cc │ │ │ │ ├── BaseReader.hh │ │ │ │ ├── OBJReader.cc │ │ │ │ ├── OBJReader.hh │ │ │ │ ├── OFFReader.cc │ │ │ │ ├── OFFReader.hh │ │ │ │ ├── OMReader.cc │ │ │ │ ├── OMReader.hh │ │ │ │ ├── STLReader.cc │ │ │ │ └── STLReader.hh │ │ │ └── writer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseWriter.cc │ │ │ │ ├── BaseWriter.hh │ │ │ │ ├── OBJWriter.cc │ │ │ │ ├── OBJWriter.hh │ │ │ │ ├── OFFWriter.cc │ │ │ │ ├── OFFWriter.hh │ │ │ │ ├── OMWriter.cc │ │ │ │ ├── OMWriter.hh │ │ │ │ ├── STLWriter.cc │ │ │ │ └── STLWriter.hh │ │ ├── Mesh │ │ │ ├── ACGMakefile │ │ │ ├── ArrayItems.hh │ │ │ ├── ArrayKernel.cc │ │ │ ├── ArrayKernel.hh │ │ │ ├── AttribKernelT.hh │ │ │ ├── Attributes.hh │ │ │ ├── BaseKernel.cc │ │ │ ├── BaseKernel.hh │ │ │ ├── BaseMesh.hh │ │ │ ├── Casts.hh │ │ │ ├── CirculatorsT.hh │ │ │ ├── FinalMeshItemsT.hh │ │ │ ├── Handles.hh │ │ │ ├── IteratorsT.hh │ │ │ ├── PolyConnectivity.cc │ │ │ ├── PolyConnectivity.hh │ │ │ ├── PolyMeshT.cc │ │ │ ├── PolyMeshT.hh │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ ├── Status.hh │ │ │ ├── Traits.hh │ │ │ ├── TriConnectivity.cc │ │ │ ├── TriConnectivity.hh │ │ │ ├── TriMeshT.cc │ │ │ ├── TriMeshT.hh │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ └── gen │ │ │ │ ├── circulators_header.hh │ │ │ │ ├── circulators_template.hh │ │ │ │ ├── footer.hh │ │ │ │ ├── generate.sh │ │ │ │ ├── iterators_header.hh │ │ │ │ └── iterators_template.hh │ │ ├── OpenMesh_Core.vcproj │ │ ├── System │ │ │ ├── ACGMakefile │ │ │ ├── compiler.hh │ │ │ ├── config.h │ │ │ ├── config.hh │ │ │ ├── mostream.hh │ │ │ ├── omstream.cc │ │ │ └── omstream.hh │ │ ├── Templates │ │ │ ├── newClass.cc │ │ │ ├── newClass.hh │ │ │ ├── newClass.sh │ │ │ ├── newClassT.cc │ │ │ ├── newClassT.hh │ │ │ └── newClassT.sh │ │ └── Utils │ │ │ ├── ACGMakefile │ │ │ ├── AutoPropertyHandleT.hh │ │ │ ├── BaseProperty.cc │ │ │ ├── BaseProperty.hh │ │ │ ├── Endian.cc │ │ │ ├── Endian.hh │ │ │ ├── GenProg.hh │ │ │ ├── Noncopyable.hh │ │ │ ├── Property.hh │ │ │ ├── PropertyContainer.hh │ │ │ ├── SingletonT.cc │ │ │ ├── SingletonT.hh │ │ │ ├── color_cast.hh │ │ │ ├── vector_cast.hh │ │ │ └── vector_traits.hh │ ├── Doc │ │ ├── ACGMakefile │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ └── ACGMakefile │ │ ├── decimater.docu │ │ ├── history.docu │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ └── om-format.png │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── Doxyfile │ ├── LICENSE │ ├── README │ ├── Tools │ │ ├── ACGMakefile │ │ ├── Decimater │ │ │ ├── ACGMakefile │ │ │ ├── CollapseInfoT.hh │ │ │ ├── DecimaterT.cc │ │ │ ├── DecimaterT.hh │ │ │ ├── ModBaseT.hh │ │ │ ├── ModIndependentSetsT.hh │ │ │ ├── ModNormalFlippingT.hh │ │ │ ├── ModProgMeshT.cc │ │ │ ├── ModProgMeshT.hh │ │ │ ├── ModQuadricT.cc │ │ │ ├── ModQuadricT.hh │ │ │ ├── ModRoundnessT.hh │ │ │ ├── calc-roundness.m │ │ │ ├── roundness.m │ │ │ └── roundness.sh │ │ ├── Kernel_OSG │ │ │ ├── ACGMakefile │ │ │ ├── ArrayKernelT.hh │ │ │ ├── AttribKernelT.hh │ │ │ ├── PropertyKernel.hh │ │ │ ├── PropertyT.hh │ │ │ ├── Traits.hh │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ ├── VectorAdapter.hh │ │ │ ├── bindT.hh │ │ │ └── color_cast.hh │ │ ├── OpenMesh_Tools.vcproj │ │ ├── Smoother │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ ├── LaplaceSmootherT.cc │ │ │ ├── LaplaceSmootherT.hh │ │ │ ├── SmootherT.cc │ │ │ ├── SmootherT.hh │ │ │ └── smooth_mesh.hh │ │ ├── Subdivider │ │ │ ├── ACGMakefile │ │ │ ├── Adaptive │ │ │ │ ├── ACGMakefile │ │ │ │ └── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ └── Traits.hh │ │ │ └── Uniform │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Composite │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CompositeT.cc │ │ │ │ ├── CompositeT.hh │ │ │ │ └── CompositeTraits.hh │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ ├── LoopT.hh │ │ │ │ ├── Sqrt3T.hh │ │ │ │ └── SubdividerT.hh │ │ ├── Utils │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── GLConstAsString.hh │ │ │ ├── Gnuplot.cc │ │ │ ├── Gnuplot.hh │ │ │ ├── HeapT.hh │ │ │ ├── MeshCheckerT.cc │ │ │ ├── MeshCheckerT.hh │ │ │ ├── NumLimitsT.hh │ │ │ ├── StripifierT.cc │ │ │ ├── StripifierT.hh │ │ │ ├── TestingFramework.hh │ │ │ ├── Timer.cc │ │ │ ├── Timer.hh │ │ │ ├── conio.cc │ │ │ ├── conio.hh │ │ │ ├── getopt.c │ │ │ └── getopt.h │ │ └── VDPM │ │ │ ├── ACGMakefile │ │ │ ├── MeshTraits.hh │ │ │ ├── StreamingDef.hh │ │ │ ├── VFront.cc │ │ │ ├── VFront.hh │ │ │ ├── VHierarchy.cc │ │ │ ├── VHierarchy.hh │ │ │ ├── VHierarchyNode.hh │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ ├── VHierarchyWindow.cc │ │ │ ├── VHierarchyWindow.hh │ │ │ ├── ViewingParameters.cc │ │ │ ├── ViewingParameters.hh │ │ │ └── xpm │ │ │ ├── fileopen.xpm │ │ │ ├── fileprint.xpm │ │ │ └── filesave.xpm │ ├── VERSION │ ├── openmesh │ │ └── templates │ │ │ ├── cpp_template │ │ │ └── header_template │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-2.0-RC1 │ ├── .qmake.cache │ ├── Apps │ │ ├── Decimating │ │ │ ├── CmdOption.hh │ │ │ ├── DecimaterGui │ │ │ │ └── DecimaterGui.pro │ │ │ ├── DecimaterViewerWidget.cc │ │ │ ├── DecimaterViewerWidget.hh │ │ │ ├── commandlineDecimater │ │ │ │ └── commandlineDecimater.pro │ │ │ ├── decimater.cc │ │ │ └── decimaterviewer.cc │ │ ├── QtViewer │ │ │ ├── MeshViewerWidget.hh │ │ │ ├── MeshViewerWidgetT.cc │ │ │ ├── MeshViewerWidgetT.hh │ │ │ ├── QGLViewerWidget.cc │ │ │ ├── QGLViewerWidget.hh │ │ │ ├── QtViewer.pro │ │ │ └── meshviewer.cc │ │ ├── Smoothing │ │ │ ├── Smoothing.pro │ │ │ └── smooth.cc │ │ ├── Subdivider │ │ │ ├── MeshViewerWidget.hh │ │ │ ├── SubdivideWidget.cc │ │ │ ├── SubdivideWidget.hh │ │ │ ├── SubdividerGui │ │ │ │ └── SubdividerGui.pro │ │ │ ├── adaptive_subdivider.cc │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ ├── commandlineSubdivider │ │ │ │ └── commandlineSubdivider.pro │ │ │ ├── qtsubdivider.cc │ │ │ └── subdivider.cc │ │ ├── Unsupported │ │ │ ├── IvViewer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ └── ivviewer.cc │ │ │ ├── OsgViewer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── README │ │ │ │ ├── meshviewer.cc │ │ │ │ └── osgviewer.cc │ │ │ ├── ProgViewer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ └── progviewer.cc │ │ │ ├── Streaming-qt4 │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Client │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ └── camera.cmr │ │ │ │ └── Server │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ ├── bunny.pm │ │ │ │ │ ├── bunny.spm │ │ │ │ │ └── rockerArm.pm │ │ │ ├── Streaming │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Client │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ └── Server │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ └── VDProgMesh │ │ │ │ ├── Analyzer │ │ │ │ ├── Analyzer.pro │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ ├── Synthesizer │ │ │ │ ├── Synthesizer.pro │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ └── mkbalancedpm │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ └── mkbalancedpm.pro │ │ └── mconvert │ │ │ ├── VS2008mconvert.vcproj │ │ │ ├── mconvert.cc │ │ │ └── mconvert.pro │ ├── CHANGES │ ├── Core │ │ ├── ACGMakefile │ │ ├── Core.pro │ │ ├── Geometry │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── LoopSchemeMaskT.hh │ │ │ ├── MathDefs.hh │ │ │ ├── Plane3d.hh │ │ │ ├── QuadricT.hh │ │ │ ├── VectorT.hh │ │ │ └── VectorT_inc.hh │ │ ├── IO │ │ │ ├── ACGMakefile │ │ │ ├── BinaryHelper.cc │ │ │ ├── BinaryHelper.hh │ │ │ ├── IOInstances.hh │ │ │ ├── IOManager.cc │ │ │ ├── IOManager.hh │ │ │ ├── MeshIO.hh │ │ │ ├── OFFFormat.hh │ │ │ ├── OMFormat.cc │ │ │ ├── OMFormat.hh │ │ │ ├── OMFormatT.cc │ │ │ ├── Options.hh │ │ │ ├── SR_binary.hh │ │ │ ├── SR_binary_spec.hh │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ ├── SR_rbo.hh │ │ │ ├── SR_store.hh │ │ │ ├── SR_types.hh │ │ │ ├── StoreRestore.hh │ │ │ ├── exporter │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseExporter.hh │ │ │ │ └── ExporterT.hh │ │ │ ├── importer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseImporter.hh │ │ │ │ └── ImporterT.hh │ │ │ ├── reader │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseReader.cc │ │ │ │ ├── BaseReader.hh │ │ │ │ ├── OBJReader.cc │ │ │ │ ├── OBJReader.hh │ │ │ │ ├── OFFReader.cc │ │ │ │ ├── OFFReader.hh │ │ │ │ ├── OMReader.cc │ │ │ │ ├── OMReader.hh │ │ │ │ ├── PLYReader.cc │ │ │ │ ├── PLYReader.hh │ │ │ │ ├── STLReader.cc │ │ │ │ └── STLReader.hh │ │ │ └── writer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseWriter.cc │ │ │ │ ├── BaseWriter.hh │ │ │ │ ├── OBJWriter.cc │ │ │ │ ├── OBJWriter.hh │ │ │ │ ├── OFFWriter.cc │ │ │ │ ├── OFFWriter.hh │ │ │ │ ├── OMWriter.cc │ │ │ │ ├── OMWriter.hh │ │ │ │ ├── PLYWriter.cc │ │ │ │ ├── PLYWriter.hh │ │ │ │ ├── STLWriter.cc │ │ │ │ └── STLWriter.hh │ │ ├── Mesh │ │ │ ├── ACGMakefile │ │ │ ├── ArrayItems.hh │ │ │ ├── ArrayKernel.cc │ │ │ ├── ArrayKernel.hh │ │ │ ├── AttribKernelT.hh │ │ │ ├── Attributes.hh │ │ │ ├── BaseKernel.cc │ │ │ ├── BaseKernel.hh │ │ │ ├── BaseMesh.hh │ │ │ ├── Casts.hh │ │ │ ├── CirculatorsT.hh │ │ │ ├── FinalMeshItemsT.hh │ │ │ ├── Handles.hh │ │ │ ├── IteratorsT.hh │ │ │ ├── PolyConnectivity.cc │ │ │ ├── PolyConnectivity.hh │ │ │ ├── PolyMeshT.cc │ │ │ ├── PolyMeshT.hh │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ ├── Status.hh │ │ │ ├── Traits.hh │ │ │ ├── TriConnectivity.cc │ │ │ ├── TriConnectivity.hh │ │ │ ├── TriMeshT.cc │ │ │ ├── TriMeshT.hh │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ └── gen │ │ │ │ ├── circulators_header.hh │ │ │ │ ├── circulators_template.hh │ │ │ │ ├── footer.hh │ │ │ │ ├── generate.sh │ │ │ │ ├── iterators_header.hh │ │ │ │ └── iterators_template.hh │ │ ├── System │ │ │ ├── ACGMakefile │ │ │ ├── compiler.hh │ │ │ ├── config.h │ │ │ ├── config.hh │ │ │ ├── mostream.hh │ │ │ ├── omstream.cc │ │ │ └── omstream.hh │ │ ├── Templates │ │ │ ├── newClass.cc │ │ │ ├── newClass.hh │ │ │ ├── newClass.sh │ │ │ ├── newClassT.cc │ │ │ ├── newClassT.hh │ │ │ └── newClassT.sh │ │ ├── Utils │ │ │ ├── ACGMakefile │ │ │ ├── AutoPropertyHandleT.hh │ │ │ ├── BaseProperty.cc │ │ │ ├── BaseProperty.hh │ │ │ ├── Endian.cc │ │ │ ├── Endian.hh │ │ │ ├── GenProg.hh │ │ │ ├── Noncopyable.hh │ │ │ ├── Property.hh │ │ │ ├── PropertyContainer.hh │ │ │ ├── SingletonT.cc │ │ │ ├── SingletonT.hh │ │ │ ├── color_cast.hh │ │ │ ├── vector_cast.hh │ │ │ └── vector_traits.hh │ │ └── VS2008Core.vcproj │ ├── Doc │ │ ├── ACGMakefile │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Doxyfile │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ └── ACGMakefile │ │ ├── decimater.docu │ │ ├── history.docu │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ ├── acg_header.html │ │ │ ├── acg_icon.gif │ │ │ ├── acg_style.css │ │ │ ├── acg_tab_b.gif │ │ │ ├── acg_tab_l.gif │ │ │ ├── acg_tab_r.gif │ │ │ └── acg_tabs.css │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ └── om-format.png │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ ├── OpenMesh.kdevelop │ ├── OpenMesh.kdevelop.filelist │ ├── OpenMesh.pro │ ├── README │ ├── Tools │ │ ├── ACGMakefile │ │ ├── Decimater │ │ │ ├── ACGMakefile │ │ │ ├── CollapseInfoT.hh │ │ │ ├── DecimaterT.cc │ │ │ ├── DecimaterT.hh │ │ │ ├── ModBaseT.hh │ │ │ ├── ModIndependentSetsT.hh │ │ │ ├── ModNormalFlippingT.hh │ │ │ ├── ModProgMeshT.cc │ │ │ ├── ModProgMeshT.hh │ │ │ ├── ModQuadricT.cc │ │ │ ├── ModQuadricT.hh │ │ │ ├── ModRoundnessT.hh │ │ │ ├── calc-roundness.m │ │ │ ├── roundness.m │ │ │ └── roundness.sh │ │ ├── Kernel_OSG │ │ │ ├── ACGMakefile │ │ │ ├── ArrayKernelT.hh │ │ │ ├── AttribKernelT.hh │ │ │ ├── PropertyKernel.hh │ │ │ ├── PropertyT.hh │ │ │ ├── Traits.hh │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ ├── VectorAdapter.hh │ │ │ ├── bindT.hh │ │ │ └── color_cast.hh │ │ ├── Smoother │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ ├── LaplaceSmootherT.cc │ │ │ ├── LaplaceSmootherT.hh │ │ │ ├── SmootherT.cc │ │ │ ├── SmootherT.hh │ │ │ └── smooth_mesh.hh │ │ ├── Subdivider │ │ │ ├── ACGMakefile │ │ │ ├── Adaptive │ │ │ │ ├── ACGMakefile │ │ │ │ └── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ └── Traits.hh │ │ │ └── Uniform │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Composite │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CompositeT.cc │ │ │ │ ├── CompositeT.hh │ │ │ │ └── CompositeTraits.hh │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ ├── LoopT.hh │ │ │ │ ├── Sqrt3T.hh │ │ │ │ └── SubdividerT.hh │ │ ├── Tools.pro │ │ ├── Utils │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── GLConstAsString.hh │ │ │ ├── Gnuplot.cc │ │ │ ├── Gnuplot.hh │ │ │ ├── HeapT.hh │ │ │ ├── MeshCheckerT.cc │ │ │ ├── MeshCheckerT.hh │ │ │ ├── NumLimitsT.hh │ │ │ ├── StripifierT.cc │ │ │ ├── StripifierT.hh │ │ │ ├── TestingFramework.hh │ │ │ ├── Timer.cc │ │ │ ├── Timer.hh │ │ │ ├── conio.cc │ │ │ ├── conio.hh │ │ │ ├── getopt.c │ │ │ └── getopt.h │ │ ├── VDPM │ │ │ ├── ACGMakefile │ │ │ ├── MeshTraits.hh │ │ │ ├── StreamingDef.hh │ │ │ ├── VFront.cc │ │ │ ├── VFront.hh │ │ │ ├── VHierarchy.cc │ │ │ ├── VHierarchy.hh │ │ │ ├── VHierarchyNode.hh │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ ├── VHierarchyWindow.cc │ │ │ ├── VHierarchyWindow.hh │ │ │ ├── ViewingParameters.cc │ │ │ ├── ViewingParameters.hh │ │ │ └── xpm │ │ │ │ ├── fileopen.xpm │ │ │ │ ├── fileprint.xpm │ │ │ │ └── filesave.xpm │ │ └── VS2008Tools.vcproj │ ├── VERSION │ ├── VS2008OpenMesh.sln │ ├── migrate.sh │ ├── openmesh │ │ └── templates │ │ │ ├── cpp_template │ │ │ └── header_template │ ├── porting.txt │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-2.0-RC2 │ ├── .qmake.cache │ ├── Apps │ │ ├── Decimating │ │ │ ├── CmdOption.hh │ │ │ ├── DecimaterGui │ │ │ │ └── DecimaterGui.pro │ │ │ ├── DecimaterViewerWidget.cc │ │ │ ├── DecimaterViewerWidget.hh │ │ │ ├── commandlineDecimater │ │ │ │ └── commandlineDecimater.pro │ │ │ ├── decimater.cc │ │ │ └── decimaterviewer.cc │ │ ├── QtViewer │ │ │ ├── MeshViewerWidget.hh │ │ │ ├── MeshViewerWidgetT.cc │ │ │ ├── MeshViewerWidgetT.hh │ │ │ ├── QGLViewerWidget.cc │ │ │ ├── QGLViewerWidget.hh │ │ │ ├── QtViewer.pro │ │ │ └── meshviewer.cc │ │ ├── Smoothing │ │ │ ├── Smoothing.pro │ │ │ └── smooth.cc │ │ ├── Subdivider │ │ │ ├── MeshViewerWidget.hh │ │ │ ├── SubdivideWidget.cc │ │ │ ├── SubdivideWidget.hh │ │ │ ├── SubdividerGui │ │ │ │ └── SubdividerGui.pro │ │ │ ├── adaptive_subdivider.cc │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ ├── commandlineSubdivider │ │ │ │ └── commandlineSubdivider.pro │ │ │ ├── qtsubdivider.cc │ │ │ └── subdivider.cc │ │ └── mconvert │ │ │ ├── VS2008mconvert.vcproj │ │ │ ├── mconvert.cc │ │ │ └── mconvert.pro │ ├── CHANGES │ ├── Changes.txt │ ├── Core │ │ ├── ACGMakefile │ │ ├── Core.pro │ │ ├── Geometry │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── LoopSchemeMaskT.hh │ │ │ ├── MathDefs.hh │ │ │ ├── Plane3d.hh │ │ │ ├── QuadricT.hh │ │ │ ├── VectorT.hh │ │ │ └── VectorT_inc.hh │ │ ├── IO │ │ │ ├── ACGMakefile │ │ │ ├── BinaryHelper.cc │ │ │ ├── BinaryHelper.hh │ │ │ ├── IOInstances.hh │ │ │ ├── IOManager.cc │ │ │ ├── IOManager.hh │ │ │ ├── MeshIO.hh │ │ │ ├── OFFFormat.hh │ │ │ ├── OMFormat.cc │ │ │ ├── OMFormat.hh │ │ │ ├── OMFormatT.cc │ │ │ ├── Options.hh │ │ │ ├── SR_binary.hh │ │ │ ├── SR_binary_spec.hh │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ ├── SR_rbo.hh │ │ │ ├── SR_store.hh │ │ │ ├── SR_types.hh │ │ │ ├── StoreRestore.hh │ │ │ ├── exporter │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseExporter.hh │ │ │ │ └── ExporterT.hh │ │ │ ├── importer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseImporter.hh │ │ │ │ └── ImporterT.hh │ │ │ ├── reader │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseReader.cc │ │ │ │ ├── BaseReader.hh │ │ │ │ ├── OBJReader.cc │ │ │ │ ├── OBJReader.hh │ │ │ │ ├── OFFReader.cc │ │ │ │ ├── OFFReader.hh │ │ │ │ ├── OMReader.cc │ │ │ │ ├── OMReader.hh │ │ │ │ ├── PLYReader.cc │ │ │ │ ├── PLYReader.hh │ │ │ │ ├── STLReader.cc │ │ │ │ └── STLReader.hh │ │ │ └── writer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseWriter.cc │ │ │ │ ├── BaseWriter.hh │ │ │ │ ├── OBJWriter.cc │ │ │ │ ├── OBJWriter.hh │ │ │ │ ├── OFFWriter.cc │ │ │ │ ├── OFFWriter.hh │ │ │ │ ├── OMWriter.cc │ │ │ │ ├── OMWriter.hh │ │ │ │ ├── PLYWriter.cc │ │ │ │ ├── PLYWriter.hh │ │ │ │ ├── STLWriter.cc │ │ │ │ └── STLWriter.hh │ │ ├── Mesh │ │ │ ├── ACGMakefile │ │ │ ├── ArrayItems.hh │ │ │ ├── ArrayKernel.cc │ │ │ ├── ArrayKernel.hh │ │ │ ├── AttribKernelT.hh │ │ │ ├── Attributes.hh │ │ │ ├── BaseKernel.cc │ │ │ ├── BaseKernel.hh │ │ │ ├── BaseMesh.hh │ │ │ ├── Casts.hh │ │ │ ├── CirculatorsT.hh │ │ │ ├── FinalMeshItemsT.hh │ │ │ ├── Handles.hh │ │ │ ├── IteratorsT.hh │ │ │ ├── PolyConnectivity.cc │ │ │ ├── PolyConnectivity.hh │ │ │ ├── PolyMeshT.cc │ │ │ ├── PolyMeshT.hh │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ ├── Status.hh │ │ │ ├── Traits.hh │ │ │ ├── TriConnectivity.cc │ │ │ ├── TriConnectivity.hh │ │ │ ├── TriMeshT.cc │ │ │ ├── TriMeshT.hh │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ └── gen │ │ │ │ ├── circulators_header.hh │ │ │ │ ├── circulators_template.hh │ │ │ │ ├── footer.hh │ │ │ │ ├── generate.sh │ │ │ │ ├── iterators_header.hh │ │ │ │ └── iterators_template.hh │ │ ├── System │ │ │ ├── ACGMakefile │ │ │ ├── compiler.hh │ │ │ ├── config.h │ │ │ ├── config.hh │ │ │ ├── mostream.hh │ │ │ ├── omstream.cc │ │ │ └── omstream.hh │ │ ├── Templates │ │ │ ├── newClass.cc │ │ │ ├── newClass.hh │ │ │ ├── newClass.sh │ │ │ ├── newClassT.cc │ │ │ ├── newClassT.hh │ │ │ └── newClassT.sh │ │ ├── Utils │ │ │ ├── ACGMakefile │ │ │ ├── AutoPropertyHandleT.hh │ │ │ ├── BaseProperty.cc │ │ │ ├── BaseProperty.hh │ │ │ ├── Endian.cc │ │ │ ├── Endian.hh │ │ │ ├── GenProg.hh │ │ │ ├── Noncopyable.hh │ │ │ ├── Property.hh │ │ │ ├── PropertyContainer.hh │ │ │ ├── SingletonT.cc │ │ │ ├── SingletonT.hh │ │ │ ├── color_cast.hh │ │ │ ├── vector_cast.hh │ │ │ └── vector_traits.hh │ │ └── VS2008Core.vcproj │ ├── Doc │ │ ├── ACGMakefile │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Doxyfile │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ └── ACGMakefile │ │ ├── decimater.docu │ │ ├── history.docu │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ ├── acg_header.html │ │ │ ├── acg_icon.gif │ │ │ ├── acg_style.css │ │ │ ├── acg_tab_b.gif │ │ │ ├── acg_tab_l.gif │ │ │ ├── acg_tab_r.gif │ │ │ └── acg_tabs.css │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ └── om-format.png │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ ├── OpenMesh.pro │ ├── README │ ├── Tools │ │ ├── ACGMakefile │ │ ├── Decimater │ │ │ ├── ACGMakefile │ │ │ ├── CollapseInfoT.hh │ │ │ ├── DecimaterT.cc │ │ │ ├── DecimaterT.hh │ │ │ ├── ModBaseT.hh │ │ │ ├── ModIndependentSetsT.hh │ │ │ ├── ModNormalFlippingT.hh │ │ │ ├── ModProgMeshT.cc │ │ │ ├── ModProgMeshT.hh │ │ │ ├── ModQuadricT.cc │ │ │ ├── ModQuadricT.hh │ │ │ ├── ModRoundnessT.hh │ │ │ ├── calc-roundness.m │ │ │ ├── roundness.m │ │ │ └── roundness.sh │ │ ├── Kernel_OSG │ │ │ ├── ACGMakefile │ │ │ ├── ArrayKernelT.hh │ │ │ ├── AttribKernelT.hh │ │ │ ├── PropertyKernel.hh │ │ │ ├── PropertyT.hh │ │ │ ├── Traits.hh │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ ├── VectorAdapter.hh │ │ │ ├── bindT.hh │ │ │ └── color_cast.hh │ │ ├── Smoother │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ ├── LaplaceSmootherT.cc │ │ │ ├── LaplaceSmootherT.hh │ │ │ ├── SmootherT.cc │ │ │ ├── SmootherT.hh │ │ │ └── smooth_mesh.hh │ │ ├── Subdivider │ │ │ ├── ACGMakefile │ │ │ ├── Adaptive │ │ │ │ ├── ACGMakefile │ │ │ │ └── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ └── Traits.hh │ │ │ └── Uniform │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Composite │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CompositeT.cc │ │ │ │ ├── CompositeT.hh │ │ │ │ └── CompositeTraits.hh │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ ├── LoopT.hh │ │ │ │ ├── Sqrt3T.hh │ │ │ │ └── SubdividerT.hh │ │ ├── Tools.pro │ │ ├── Utils │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── GLConstAsString.hh │ │ │ ├── Gnuplot.cc │ │ │ ├── Gnuplot.hh │ │ │ ├── HeapT.hh │ │ │ ├── MeshCheckerT.cc │ │ │ ├── MeshCheckerT.hh │ │ │ ├── NumLimitsT.hh │ │ │ ├── StripifierT.cc │ │ │ ├── StripifierT.hh │ │ │ ├── TestingFramework.hh │ │ │ ├── Timer.cc │ │ │ ├── Timer.hh │ │ │ ├── conio.cc │ │ │ ├── conio.hh │ │ │ ├── getopt.c │ │ │ └── getopt.h │ │ ├── VDPM │ │ │ ├── ACGMakefile │ │ │ ├── MeshTraits.hh │ │ │ ├── StreamingDef.hh │ │ │ ├── VFront.cc │ │ │ ├── VFront.hh │ │ │ ├── VHierarchy.cc │ │ │ ├── VHierarchy.hh │ │ │ ├── VHierarchyNode.hh │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ ├── VHierarchyWindow.cc │ │ │ ├── VHierarchyWindow.hh │ │ │ ├── ViewingParameters.cc │ │ │ ├── ViewingParameters.hh │ │ │ └── xpm │ │ │ │ ├── fileopen.xpm │ │ │ │ ├── fileprint.xpm │ │ │ │ └── filesave.xpm │ │ └── VS2008Tools.vcproj │ ├── VERSION │ ├── VS2008OpenMesh.sln │ ├── openmesh │ │ └── templates │ │ │ ├── cpp_template │ │ │ └── header_template │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-2.0-RC3 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ │ ├── ACGMakefile │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Doxyfile │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ └── ACGMakefile │ │ ├── decimater.docu │ │ ├── history.docu │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ ├── acg_header.html │ │ │ ├── acg_icon.gif │ │ │ ├── acg_style.css │ │ │ ├── acg_tab_b.gif │ │ │ ├── acg_tab_l.gif │ │ │ ├── acg_tab_r.gif │ │ │ └── acg_tabs.css │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ └── om-format.png │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ │ ├── COPYING │ │ ├── COPYING.EXCEPTIONS │ │ ├── COPYING.LESSER │ │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── VS2008OpenMesh.sln │ ├── cmake │ │ ├── ACGCommon.cmake │ │ ├── ACGCompiler.cmake │ │ ├── ACGOutput.cmake │ │ ├── FindGLEW.cmake │ │ └── FindOpenMP.cmake │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ ├── src │ │ └── OpenMesh │ │ │ ├── ACGMakefile │ │ │ ├── ACGMakefile.proj │ │ │ ├── Apps │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimating │ │ │ │ ├── CmdOption.hh │ │ │ │ ├── DecimaterGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ ├── commandlineDecimater │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ ├── decimater.cc │ │ │ │ └── decimaterviewer.cc │ │ │ ├── QtViewer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ ├── QtViewer.pro │ │ │ │ └── meshviewer.cc │ │ │ ├── Smoothing │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Smoothing.pro │ │ │ │ └── smooth.cc │ │ │ ├── Subdivider │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ ├── SubdividerGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ ├── qtsubdivider.cc │ │ │ │ └── subdivider.cc │ │ │ ├── Unsupported │ │ │ │ ├── IvViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ └── ivviewer.cc │ │ │ │ ├── OsgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── README │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ └── osgviewer.cc │ │ │ │ ├── ProgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ │ └── progviewer.cc │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ ├── Streaming │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ │ └── VDProgMesh │ │ │ │ │ ├── Analyzer │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ │ ├── Synthesizer │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ │ └── mkbalancedpm │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ └── mkbalancedpm.pro │ │ │ └── mconvert │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ ├── mconvert.cc │ │ │ │ └── mconvert.pro │ │ │ ├── Core │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Core.pro │ │ │ ├── Geometry │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ ├── MathDefs.hh │ │ │ │ ├── Plane3d.hh │ │ │ │ ├── QuadricT.hh │ │ │ │ ├── VectorT.hh │ │ │ │ └── VectorT_inc.hh │ │ │ ├── IO │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BinaryHelper.cc │ │ │ │ ├── BinaryHelper.hh │ │ │ │ ├── IOInstances.hh │ │ │ │ ├── IOManager.cc │ │ │ │ ├── IOManager.hh │ │ │ │ ├── MeshIO.hh │ │ │ │ ├── OFFFormat.hh │ │ │ │ ├── OMFormat.cc │ │ │ │ ├── OMFormat.hh │ │ │ │ ├── OMFormatT.cc │ │ │ │ ├── Options.hh │ │ │ │ ├── SR_binary.hh │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ ├── SR_rbo.hh │ │ │ │ ├── SR_store.hh │ │ │ │ ├── SR_types.hh │ │ │ │ ├── StoreRestore.hh │ │ │ │ ├── exporter │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ └── ExporterT.hh │ │ │ │ ├── importer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ └── ImporterT.hh │ │ │ │ ├── reader │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ └── STLReader.hh │ │ │ │ └── writer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ └── STLWriter.hh │ │ │ ├── Mesh │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayItems.hh │ │ │ │ ├── ArrayKernel.cc │ │ │ │ ├── ArrayKernel.hh │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── Attributes.hh │ │ │ │ ├── BaseKernel.cc │ │ │ │ ├── BaseKernel.hh │ │ │ │ ├── BaseMesh.hh │ │ │ │ ├── Casts.hh │ │ │ │ ├── CirculatorsT.hh │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ ├── Handles.hh │ │ │ │ ├── IteratorsT.hh │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ ├── PolyMeshT.cc │ │ │ │ ├── PolyMeshT.hh │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ ├── Status.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriConnectivity.cc │ │ │ │ ├── TriConnectivity.hh │ │ │ │ ├── TriMeshT.cc │ │ │ │ ├── TriMeshT.hh │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ └── gen │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ ├── footer.hh │ │ │ │ │ ├── generate.sh │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ └── iterators_template.hh │ │ │ ├── System │ │ │ │ ├── ACGMakefile │ │ │ │ ├── compiler.hh │ │ │ │ ├── config.h │ │ │ │ ├── config.hh │ │ │ │ ├── mostream.hh │ │ │ │ ├── omstream.cc │ │ │ │ └── omstream.hh │ │ │ ├── Templates │ │ │ │ ├── newClass.cc │ │ │ │ ├── newClass.hh │ │ │ │ ├── newClass.sh │ │ │ │ ├── newClassT.cc │ │ │ │ ├── newClassT.hh │ │ │ │ └── newClassT.sh │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ ├── BaseProperty.cc │ │ │ │ ├── BaseProperty.hh │ │ │ │ ├── Endian.cc │ │ │ │ ├── Endian.hh │ │ │ │ ├── GenProg.hh │ │ │ │ ├── Noncopyable.hh │ │ │ │ ├── Property.hh │ │ │ │ ├── PropertyContainer.hh │ │ │ │ ├── SingletonT.cc │ │ │ │ ├── SingletonT.hh │ │ │ │ ├── color_cast.hh │ │ │ │ ├── vector_cast.hh │ │ │ │ └── vector_traits.hh │ │ │ └── VS2008Core.vcproj │ │ │ └── Tools │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimater │ │ │ ├── ACGMakefile │ │ │ ├── CollapseInfoT.hh │ │ │ ├── DecimaterT.cc │ │ │ ├── DecimaterT.hh │ │ │ ├── ModBaseT.hh │ │ │ ├── ModIndependentSetsT.hh │ │ │ ├── ModNormalFlippingT.hh │ │ │ ├── ModProgMeshT.cc │ │ │ ├── ModProgMeshT.hh │ │ │ ├── ModQuadricT.cc │ │ │ ├── ModQuadricT.hh │ │ │ ├── ModRoundnessT.hh │ │ │ ├── calc-roundness.m │ │ │ ├── roundness.m │ │ │ └── roundness.sh │ │ │ ├── Kernel_OSG │ │ │ ├── ACGMakefile │ │ │ ├── ArrayKernelT.hh │ │ │ ├── AttribKernelT.hh │ │ │ ├── PropertyKernel.hh │ │ │ ├── PropertyT.hh │ │ │ ├── Traits.hh │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ ├── VectorAdapter.hh │ │ │ ├── bindT.hh │ │ │ └── color_cast.hh │ │ │ ├── Smoother │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ ├── LaplaceSmootherT.cc │ │ │ ├── LaplaceSmootherT.hh │ │ │ ├── SmootherT.cc │ │ │ ├── SmootherT.hh │ │ │ └── smooth_mesh.hh │ │ │ ├── Subdivider │ │ │ ├── ACGMakefile │ │ │ ├── Adaptive │ │ │ │ ├── ACGMakefile │ │ │ │ └── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ └── Traits.hh │ │ │ └── Uniform │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Composite │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CompositeT.cc │ │ │ │ ├── CompositeT.hh │ │ │ │ └── CompositeTraits.hh │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ ├── LoopT.hh │ │ │ │ ├── Sqrt3T.hh │ │ │ │ └── SubdividerT.hh │ │ │ ├── Tools.pro │ │ │ ├── Utils │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── GLConstAsString.hh │ │ │ ├── Gnuplot.cc │ │ │ ├── Gnuplot.hh │ │ │ ├── HeapT.hh │ │ │ ├── MeshCheckerT.cc │ │ │ ├── MeshCheckerT.hh │ │ │ ├── NumLimitsT.hh │ │ │ ├── StripifierT.cc │ │ │ ├── StripifierT.hh │ │ │ ├── TestingFramework.hh │ │ │ ├── Timer.cc │ │ │ ├── Timer.hh │ │ │ ├── conio.cc │ │ │ ├── conio.hh │ │ │ ├── getopt.c │ │ │ └── getopt.h │ │ │ ├── VDPM │ │ │ ├── ACGMakefile │ │ │ ├── MeshTraits.hh │ │ │ ├── StreamingDef.hh │ │ │ ├── VFront.cc │ │ │ ├── VFront.hh │ │ │ ├── VHierarchy.cc │ │ │ ├── VHierarchy.hh │ │ │ ├── VHierarchyNode.hh │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ ├── VHierarchyWindow.cc │ │ │ ├── VHierarchyWindow.hh │ │ │ ├── ViewingParameters.cc │ │ │ ├── ViewingParameters.hh │ │ │ └── xpm │ │ │ │ ├── fileopen.xpm │ │ │ │ ├── fileprint.xpm │ │ │ │ └── filesave.xpm │ │ │ └── VS2008Tools.vcproj │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-2.0-RC4 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Doxyfile │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 07b-delete_geometry │ │ │ │ └── delete_geometry.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ └── ACGMakefile │ │ ├── decimater.docu │ │ ├── doxy.config.in │ │ ├── history.docu │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ ├── acg_header.html │ │ │ ├── acg_icon.gif │ │ │ ├── acg_style.css │ │ │ ├── acg_tab_b.gif │ │ │ ├── acg_tab_l.gif │ │ │ ├── acg_tab_r.gif │ │ │ └── acg_tabs.css │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ └── om-format.png │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_07b.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ │ ├── COPYING │ │ ├── COPYING.EXCEPTIONS │ │ ├── COPYING.LESSER │ │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── VS2008OpenMesh.sln │ ├── cmake │ │ ├── ACGCommon.cmake │ │ ├── ACGCompiler.cmake │ │ ├── ACGDoxygen.cmake │ │ ├── ACGOutput.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindOpenMP.cmake │ │ └── OpenMeshPackage.cmake │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ ├── src │ │ └── OpenMesh │ │ │ ├── ACGMakefile │ │ │ ├── ACGMakefile.proj │ │ │ ├── Apps │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimating │ │ │ │ ├── CmdOption.hh │ │ │ │ ├── DecimaterGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ ├── commandlineDecimater │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ ├── decimater.cc │ │ │ │ └── decimaterviewer.cc │ │ │ ├── QtViewer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ ├── QtViewer.pro │ │ │ │ └── meshviewer.cc │ │ │ ├── Smoothing │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Smoothing.pro │ │ │ │ └── smooth.cc │ │ │ ├── Subdivider │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ ├── SubdividerGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ ├── qtsubdivider.cc │ │ │ │ └── subdivider.cc │ │ │ ├── Unsupported │ │ │ │ ├── IvViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ └── ivviewer.cc │ │ │ │ ├── OsgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── README │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ └── osgviewer.cc │ │ │ │ ├── ProgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ │ └── progviewer.cc │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ ├── Streaming │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ │ └── VDProgMesh │ │ │ │ │ ├── Analyzer │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ │ ├── Synthesizer │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ │ └── mkbalancedpm │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ └── mkbalancedpm.pro │ │ │ └── mconvert │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ ├── mconvert.cc │ │ │ │ └── mconvert.pro │ │ │ ├── Core │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Core.pro │ │ │ ├── Geometry │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ ├── MathDefs.hh │ │ │ │ ├── Plane3d.hh │ │ │ │ ├── QuadricT.hh │ │ │ │ ├── VectorT.hh │ │ │ │ └── VectorT_inc.hh │ │ │ ├── IO │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BinaryHelper.cc │ │ │ │ ├── BinaryHelper.hh │ │ │ │ ├── IOInstances.hh │ │ │ │ ├── IOManager.cc │ │ │ │ ├── IOManager.hh │ │ │ │ ├── MeshIO.hh │ │ │ │ ├── OFFFormat.hh │ │ │ │ ├── OMFormat.cc │ │ │ │ ├── OMFormat.hh │ │ │ │ ├── OMFormatT.cc │ │ │ │ ├── Options.hh │ │ │ │ ├── SR_binary.hh │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ ├── SR_rbo.hh │ │ │ │ ├── SR_store.hh │ │ │ │ ├── SR_types.hh │ │ │ │ ├── StoreRestore.hh │ │ │ │ ├── exporter │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ └── ExporterT.hh │ │ │ │ ├── importer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ └── ImporterT.hh │ │ │ │ ├── reader │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ └── STLReader.hh │ │ │ │ └── writer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ └── STLWriter.hh │ │ │ ├── Mesh │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayItems.hh │ │ │ │ ├── ArrayKernel.cc │ │ │ │ ├── ArrayKernel.hh │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── Attributes.hh │ │ │ │ ├── BaseKernel.cc │ │ │ │ ├── BaseKernel.hh │ │ │ │ ├── BaseMesh.hh │ │ │ │ ├── Casts.hh │ │ │ │ ├── CirculatorsT.hh │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ ├── Handles.hh │ │ │ │ ├── IteratorsT.hh │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ ├── PolyMeshT.cc │ │ │ │ ├── PolyMeshT.hh │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ ├── Status.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriConnectivity.cc │ │ │ │ ├── TriConnectivity.hh │ │ │ │ ├── TriMeshT.cc │ │ │ │ ├── TriMeshT.hh │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ └── gen │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ ├── footer.hh │ │ │ │ │ ├── generate.sh │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ └── iterators_template.hh │ │ │ ├── System │ │ │ │ ├── ACGMakefile │ │ │ │ ├── compiler.hh │ │ │ │ ├── config.h │ │ │ │ ├── config.hh │ │ │ │ ├── mostream.hh │ │ │ │ ├── omstream.cc │ │ │ │ └── omstream.hh │ │ │ ├── Templates │ │ │ │ ├── newClass.cc │ │ │ │ ├── newClass.hh │ │ │ │ ├── newClass.sh │ │ │ │ ├── newClassT.cc │ │ │ │ ├── newClassT.hh │ │ │ │ └── newClassT.sh │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ ├── BaseProperty.cc │ │ │ │ ├── BaseProperty.hh │ │ │ │ ├── Endian.cc │ │ │ │ ├── Endian.hh │ │ │ │ ├── GenProg.hh │ │ │ │ ├── Noncopyable.hh │ │ │ │ ├── Property.hh │ │ │ │ ├── PropertyContainer.hh │ │ │ │ ├── SingletonT.cc │ │ │ │ ├── SingletonT.hh │ │ │ │ ├── color_cast.hh │ │ │ │ ├── vector_cast.hh │ │ │ │ └── vector_traits.hh │ │ │ └── VS2008Core.vcproj │ │ │ ├── Examples │ │ │ ├── Examples.pro │ │ │ ├── Tutorial01 │ │ │ │ ├── Tutorial01.pro │ │ │ │ └── cube.cc │ │ │ ├── Tutorial02 │ │ │ │ ├── Tutorial02.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial03 │ │ │ │ ├── Tutorial03.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial04 │ │ │ │ ├── Tutorial04.pro │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── Tutorial05 │ │ │ │ ├── Tutorial05.pro │ │ │ │ └── properties.cc │ │ │ ├── Tutorial06 │ │ │ │ ├── Tutorial06.pro │ │ │ │ └── attributes.cc │ │ │ ├── Tutorial07 │ │ │ │ ├── Tutorial07.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial08 │ │ │ │ ├── Tutorial08.pro │ │ │ │ └── delete_geometry.cc │ │ │ ├── Tutorial09 │ │ │ │ ├── Tutorial09.pro │ │ │ │ └── io_options.cc │ │ │ └── Tutorial10 │ │ │ │ ├── Tutorial10.pro │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ └── Tools │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimater │ │ │ ├── ACGMakefile │ │ │ ├── CollapseInfoT.hh │ │ │ ├── DecimaterT.cc │ │ │ ├── DecimaterT.hh │ │ │ ├── ModBaseT.hh │ │ │ ├── ModIndependentSetsT.hh │ │ │ ├── ModNormalFlippingT.hh │ │ │ ├── ModProgMeshT.cc │ │ │ ├── ModProgMeshT.hh │ │ │ ├── ModQuadricT.cc │ │ │ ├── ModQuadricT.hh │ │ │ ├── ModRoundnessT.hh │ │ │ ├── calc-roundness.m │ │ │ ├── roundness.m │ │ │ └── roundness.sh │ │ │ ├── Kernel_OSG │ │ │ ├── ACGMakefile │ │ │ ├── ArrayKernelT.hh │ │ │ ├── AttribKernelT.hh │ │ │ ├── PropertyKernel.hh │ │ │ ├── PropertyT.hh │ │ │ ├── Traits.hh │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ ├── VectorAdapter.hh │ │ │ ├── bindT.hh │ │ │ └── color_cast.hh │ │ │ ├── Smoother │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ ├── LaplaceSmootherT.cc │ │ │ ├── LaplaceSmootherT.hh │ │ │ ├── SmootherT.cc │ │ │ ├── SmootherT.hh │ │ │ └── smooth_mesh.hh │ │ │ ├── Subdivider │ │ │ ├── ACGMakefile │ │ │ ├── Adaptive │ │ │ │ ├── ACGMakefile │ │ │ │ └── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ └── Traits.hh │ │ │ └── Uniform │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Composite │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CompositeT.cc │ │ │ │ ├── CompositeT.hh │ │ │ │ └── CompositeTraits.hh │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ ├── LoopT.hh │ │ │ │ ├── Sqrt3T.hh │ │ │ │ └── SubdividerT.hh │ │ │ ├── Tools.pro │ │ │ ├── Utils │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── GLConstAsString.hh │ │ │ ├── Gnuplot.cc │ │ │ ├── Gnuplot.hh │ │ │ ├── HeapT.hh │ │ │ ├── MeshCheckerT.cc │ │ │ ├── MeshCheckerT.hh │ │ │ ├── NumLimitsT.hh │ │ │ ├── StripifierT.cc │ │ │ ├── StripifierT.hh │ │ │ ├── TestingFramework.hh │ │ │ ├── Timer.cc │ │ │ ├── Timer.hh │ │ │ ├── conio.cc │ │ │ ├── conio.hh │ │ │ ├── getopt.c │ │ │ └── getopt.h │ │ │ ├── VDPM │ │ │ ├── ACGMakefile │ │ │ ├── MeshTraits.hh │ │ │ ├── StreamingDef.hh │ │ │ ├── VFront.cc │ │ │ ├── VFront.hh │ │ │ ├── VHierarchy.cc │ │ │ ├── VHierarchy.hh │ │ │ ├── VHierarchyNode.hh │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ ├── VHierarchyWindow.cc │ │ │ ├── VHierarchyWindow.hh │ │ │ ├── ViewingParameters.cc │ │ │ ├── ViewingParameters.hh │ │ │ └── xpm │ │ │ │ ├── fileopen.xpm │ │ │ │ ├── fileprint.xpm │ │ │ │ └── filesave.xpm │ │ │ └── VS2008Tools.vcproj │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-2.0-RC5 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Doxyfile │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulator_functions.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── nav_code1.cc │ │ │ ├── nav_code2.cc │ │ │ ├── nav_code3.cc │ │ │ ├── nav_code4.cc │ │ │ ├── nav_code4a.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 07b-delete_geometry │ │ │ │ └── delete_geometry.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ ├── ACGMakefile │ │ │ └── CMakeLists.txt │ │ ├── decimater.docu │ │ ├── doxy.config.in │ │ ├── history.docu │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ ├── acg_header.html │ │ │ ├── acg_icon.gif │ │ │ ├── acg_style.css │ │ │ ├── acg_tab_b.gif │ │ │ ├── acg_tab_l.gif │ │ │ ├── acg_tab_r.gif │ │ │ └── acg_tabs.css │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ ├── mesh.collapse.png │ │ │ ├── mesh.flip.png │ │ │ ├── mesh.inner.png │ │ │ ├── mesh.inout.png │ │ │ ├── mesh.normal.png │ │ │ ├── mesh.opp.png │ │ │ ├── mesh.outer.png │ │ │ ├── om-format.png │ │ │ └── src │ │ │ │ ├── mesh.collapse.tex │ │ │ │ ├── mesh.flip.tex │ │ │ │ ├── mesh.inner.tex │ │ │ │ ├── mesh.io.tex │ │ │ │ ├── mesh.normal.tex │ │ │ │ ├── mesh.opp.tex │ │ │ │ └── mesh.outer.tex │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── navigation.docu │ │ ├── operations.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_07b.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_build.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ │ ├── COPYING │ │ ├── COPYING.EXCEPTIONS │ │ ├── COPYING.LESSER │ │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── VS2008OpenMesh.sln │ ├── cmake │ │ ├── ACGCommon.cmake │ │ ├── ACGCompiler.cmake │ │ ├── ACGDoxygen.cmake │ │ ├── ACGOutput.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindOpenMP.cmake │ │ └── OpenMeshPackage.cmake │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ ├── src │ │ └── OpenMesh │ │ │ ├── ACGMakefile │ │ │ ├── ACGMakefile.proj │ │ │ ├── Apps │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimating │ │ │ │ ├── CmdOption.hh │ │ │ │ ├── DecimaterGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ ├── commandlineDecimater │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ ├── decimater.cc │ │ │ │ └── decimaterviewer.cc │ │ │ ├── ProgViewer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ └── progviewer.cc │ │ │ ├── QtViewer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ ├── QtViewer.pro │ │ │ │ └── meshviewer.cc │ │ │ ├── Smoothing │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Smoothing.pro │ │ │ │ └── smooth.cc │ │ │ ├── Subdivider │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ ├── SubdividerGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ ├── qtsubdivider.cc │ │ │ │ └── subdivider.cc │ │ │ ├── Unsupported │ │ │ │ ├── IvViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ └── ivviewer.cc │ │ │ │ ├── OsgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── README │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ └── osgviewer.cc │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ └── Streaming │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ └── Server │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ ├── VDProgMesh │ │ │ │ ├── Analyzer │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ ├── Synthesizer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ └── mkbalancedpm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ └── mkbalancedpm.pro │ │ │ └── mconvert │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ ├── mconvert.cc │ │ │ │ └── mconvert.pro │ │ │ ├── Core │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Core.pro │ │ │ ├── Geometry │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ ├── MathDefs.hh │ │ │ │ ├── Plane3d.hh │ │ │ │ ├── QuadricT.hh │ │ │ │ ├── VectorT.hh │ │ │ │ └── VectorT_inc.hh │ │ │ ├── IO │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BinaryHelper.cc │ │ │ │ ├── BinaryHelper.hh │ │ │ │ ├── IOInstances.hh │ │ │ │ ├── IOManager.cc │ │ │ │ ├── IOManager.hh │ │ │ │ ├── MeshIO.hh │ │ │ │ ├── OFFFormat.hh │ │ │ │ ├── OMFormat.cc │ │ │ │ ├── OMFormat.hh │ │ │ │ ├── OMFormatT.cc │ │ │ │ ├── Options.hh │ │ │ │ ├── SR_binary.hh │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ ├── SR_rbo.hh │ │ │ │ ├── SR_store.hh │ │ │ │ ├── SR_types.hh │ │ │ │ ├── StoreRestore.hh │ │ │ │ ├── exporter │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ └── ExporterT.hh │ │ │ │ ├── importer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ └── ImporterT.hh │ │ │ │ ├── reader │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ └── STLReader.hh │ │ │ │ └── writer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ └── STLWriter.hh │ │ │ ├── Mesh │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayItems.hh │ │ │ │ ├── ArrayKernel.cc │ │ │ │ ├── ArrayKernel.hh │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── Attributes.hh │ │ │ │ ├── BaseKernel.cc │ │ │ │ ├── BaseKernel.hh │ │ │ │ ├── BaseMesh.hh │ │ │ │ ├── Casts.hh │ │ │ │ ├── CirculatorsT.hh │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ ├── Handles.hh │ │ │ │ ├── IteratorsT.hh │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ ├── PolyMeshT.cc │ │ │ │ ├── PolyMeshT.hh │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ ├── Status.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriConnectivity.cc │ │ │ │ ├── TriConnectivity.hh │ │ │ │ ├── TriMeshT.cc │ │ │ │ ├── TriMeshT.hh │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ └── gen │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ ├── footer.hh │ │ │ │ │ ├── generate.sh │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ └── iterators_template.hh │ │ │ ├── System │ │ │ │ ├── ACGMakefile │ │ │ │ ├── compiler.hh │ │ │ │ ├── config.h │ │ │ │ ├── config.hh │ │ │ │ ├── mostream.hh │ │ │ │ ├── omstream.cc │ │ │ │ └── omstream.hh │ │ │ ├── Templates │ │ │ │ ├── newClass.cc │ │ │ │ ├── newClass.hh │ │ │ │ ├── newClass.sh │ │ │ │ ├── newClassT.cc │ │ │ │ ├── newClassT.hh │ │ │ │ └── newClassT.sh │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ ├── BaseProperty.cc │ │ │ │ ├── BaseProperty.hh │ │ │ │ ├── Endian.cc │ │ │ │ ├── Endian.hh │ │ │ │ ├── GenProg.hh │ │ │ │ ├── Noncopyable.hh │ │ │ │ ├── Property.hh │ │ │ │ ├── PropertyContainer.hh │ │ │ │ ├── SingletonT.cc │ │ │ │ ├── SingletonT.hh │ │ │ │ ├── color_cast.hh │ │ │ │ ├── vector_cast.hh │ │ │ │ └── vector_traits.hh │ │ │ └── VS2008Core.vcproj │ │ │ ├── Examples │ │ │ ├── Examples.pro │ │ │ ├── Tutorial01 │ │ │ │ ├── Tutorial01.pro │ │ │ │ └── cube.cc │ │ │ ├── Tutorial02 │ │ │ │ ├── Tutorial02.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial03 │ │ │ │ ├── Tutorial03.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial04 │ │ │ │ ├── Tutorial04.pro │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── Tutorial05 │ │ │ │ ├── Tutorial05.pro │ │ │ │ └── properties.cc │ │ │ ├── Tutorial06 │ │ │ │ ├── Tutorial06.pro │ │ │ │ └── attributes.cc │ │ │ ├── Tutorial07 │ │ │ │ ├── Tutorial07.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial08 │ │ │ │ ├── Tutorial08.pro │ │ │ │ └── delete_geometry.cc │ │ │ ├── Tutorial09 │ │ │ │ ├── Tutorial09.pro │ │ │ │ └── io_options.cc │ │ │ └── Tutorial10 │ │ │ │ ├── Tutorial10.pro │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ └── Tools │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimater │ │ │ ├── ACGMakefile │ │ │ ├── CollapseInfoT.hh │ │ │ ├── DecimaterT.cc │ │ │ ├── DecimaterT.hh │ │ │ ├── ModBaseT.hh │ │ │ ├── ModIndependentSetsT.hh │ │ │ ├── ModNormalFlippingT.hh │ │ │ ├── ModProgMeshT.cc │ │ │ ├── ModProgMeshT.hh │ │ │ ├── ModQuadricT.cc │ │ │ ├── ModQuadricT.hh │ │ │ ├── ModRoundnessT.hh │ │ │ ├── calc-roundness.m │ │ │ ├── roundness.m │ │ │ └── roundness.sh │ │ │ ├── Kernel_OSG │ │ │ ├── ACGMakefile │ │ │ ├── ArrayKernelT.hh │ │ │ ├── AttribKernelT.hh │ │ │ ├── PropertyKernel.hh │ │ │ ├── PropertyT.hh │ │ │ ├── Traits.hh │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ ├── VectorAdapter.hh │ │ │ ├── bindT.hh │ │ │ └── color_cast.hh │ │ │ ├── Smoother │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ ├── LaplaceSmootherT.cc │ │ │ ├── LaplaceSmootherT.hh │ │ │ ├── SmootherT.cc │ │ │ ├── SmootherT.hh │ │ │ └── smooth_mesh.hh │ │ │ ├── Subdivider │ │ │ ├── ACGMakefile │ │ │ ├── Adaptive │ │ │ │ ├── ACGMakefile │ │ │ │ └── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ └── Traits.hh │ │ │ └── Uniform │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Composite │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CompositeT.cc │ │ │ │ ├── CompositeT.hh │ │ │ │ └── CompositeTraits.hh │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ ├── LoopT.hh │ │ │ │ ├── Sqrt3T.hh │ │ │ │ └── SubdividerT.hh │ │ │ ├── Tools.pro │ │ │ ├── Utils │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── GLConstAsString.hh │ │ │ ├── Gnuplot.cc │ │ │ ├── Gnuplot.hh │ │ │ ├── HeapT.hh │ │ │ ├── MeshCheckerT.cc │ │ │ ├── MeshCheckerT.hh │ │ │ ├── NumLimitsT.hh │ │ │ ├── StripifierT.cc │ │ │ ├── StripifierT.hh │ │ │ ├── TestingFramework.hh │ │ │ ├── Timer.cc │ │ │ ├── Timer.hh │ │ │ ├── conio.cc │ │ │ ├── conio.hh │ │ │ ├── getopt.c │ │ │ └── getopt.h │ │ │ ├── VDPM │ │ │ ├── ACGMakefile │ │ │ ├── MeshTraits.hh │ │ │ ├── StreamingDef.hh │ │ │ ├── VFront.cc │ │ │ ├── VFront.hh │ │ │ ├── VHierarchy.cc │ │ │ ├── VHierarchy.hh │ │ │ ├── VHierarchyNode.hh │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ ├── VHierarchyWindow.cc │ │ │ ├── VHierarchyWindow.hh │ │ │ ├── ViewingParameters.cc │ │ │ ├── ViewingParameters.hh │ │ │ └── xpm │ │ │ │ ├── fileopen.xpm │ │ │ │ ├── fileprint.xpm │ │ │ │ └── filesave.xpm │ │ │ └── VS2008Tools.vcproj │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-2.0.1 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Doxyfile │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulator_functions.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── nav_code1.cc │ │ │ ├── nav_code2.cc │ │ │ ├── nav_code3.cc │ │ │ ├── nav_code4.cc │ │ │ ├── nav_code4a.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 07b-delete_geometry │ │ │ │ └── delete_geometry.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ ├── ACGMakefile │ │ │ └── CMakeLists.txt │ │ ├── decimater.docu │ │ ├── doxy.config.in │ │ ├── history.docu │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ └── acg_icon.gif │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ ├── iomanager.png │ │ │ ├── mesh.collapse.png │ │ │ ├── mesh.flip.png │ │ │ ├── mesh.inner.png │ │ │ ├── mesh.inout.png │ │ │ ├── mesh.normal.png │ │ │ ├── mesh.opp.png │ │ │ ├── mesh.outer.png │ │ │ ├── om-format.png │ │ │ └── src │ │ │ │ ├── iomanager.tex │ │ │ │ ├── mesh.collapse.tex │ │ │ │ ├── mesh.flip.tex │ │ │ │ ├── mesh.inner.tex │ │ │ │ ├── mesh.io.tex │ │ │ │ ├── mesh.normal.tex │ │ │ │ ├── mesh.opp.tex │ │ │ │ └── mesh.outer.tex │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── navigation.docu │ │ ├── operations.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_07b.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_build.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ │ ├── COPYING │ │ ├── COPYING.EXCEPTIONS │ │ ├── COPYING.LESSER │ │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── VS2008OpenMesh.sln │ ├── cmake │ │ ├── ACGCommon.cmake │ │ ├── ACGCompiler.cmake │ │ ├── ACGDoxygen.cmake │ │ ├── ACGOutput.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGLUT.cmake │ │ ├── FindOpenMP.cmake │ │ ├── OpenMeshPackage.cmake │ │ ├── fixbundle.cmake.in │ │ └── fixbundle.cmake.win.in │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ ├── src │ │ └── OpenMesh │ │ │ ├── ACGMakefile │ │ │ ├── ACGMakefile.proj │ │ │ ├── Apps │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimating │ │ │ │ ├── CmdOption.hh │ │ │ │ ├── DecimaterGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ ├── commandlineDecimater │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ ├── decimater.cc │ │ │ │ └── decimaterviewer.cc │ │ │ ├── Dualizer │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── dualizer.cc │ │ │ ├── ProgViewer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ └── progviewer.cc │ │ │ ├── QtViewer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ ├── QtViewer.pro │ │ │ │ └── meshviewer.cc │ │ │ ├── Smoothing │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Smoothing.pro │ │ │ │ └── smooth.cc │ │ │ ├── Subdivider │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ ├── SubdividerGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ ├── qtsubdivider.cc │ │ │ │ └── subdivider.cc │ │ │ ├── Unsupported │ │ │ │ ├── IvViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ └── ivviewer.cc │ │ │ │ ├── OsgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── README │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ └── osgviewer.cc │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ └── Streaming │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ └── Server │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ ├── VDProgMesh │ │ │ │ ├── Analyzer │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ ├── Synthesizer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ └── mkbalancedpm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ └── mkbalancedpm.pro │ │ │ └── mconvert │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ ├── mconvert.cc │ │ │ │ └── mconvert.pro │ │ │ ├── Core │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Core.pro │ │ │ ├── Geometry │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ ├── MathDefs.hh │ │ │ │ ├── Plane3d.hh │ │ │ │ ├── QuadricT.hh │ │ │ │ ├── VectorT.hh │ │ │ │ └── VectorT_inc.hh │ │ │ ├── IO │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BinaryHelper.cc │ │ │ │ ├── BinaryHelper.hh │ │ │ │ ├── IOInstances.hh │ │ │ │ ├── IOManager.cc │ │ │ │ ├── IOManager.hh │ │ │ │ ├── MeshIO.hh │ │ │ │ ├── OFFFormat.hh │ │ │ │ ├── OMFormat.cc │ │ │ │ ├── OMFormat.hh │ │ │ │ ├── OMFormatT.cc │ │ │ │ ├── Options.hh │ │ │ │ ├── SR_binary.hh │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ ├── SR_rbo.hh │ │ │ │ ├── SR_store.hh │ │ │ │ ├── SR_types.hh │ │ │ │ ├── StoreRestore.hh │ │ │ │ ├── exporter │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ └── ExporterT.hh │ │ │ │ ├── importer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ └── ImporterT.hh │ │ │ │ ├── reader │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ └── STLReader.hh │ │ │ │ └── writer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ └── STLWriter.hh │ │ │ ├── Mesh │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayItems.hh │ │ │ │ ├── ArrayKernel.cc │ │ │ │ ├── ArrayKernel.hh │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── Attributes.hh │ │ │ │ ├── BaseKernel.cc │ │ │ │ ├── BaseKernel.hh │ │ │ │ ├── BaseMesh.hh │ │ │ │ ├── Casts.hh │ │ │ │ ├── CirculatorsT.hh │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ ├── Handles.hh │ │ │ │ ├── IteratorsT.hh │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ ├── PolyMeshT.cc │ │ │ │ ├── PolyMeshT.hh │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ ├── Status.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriConnectivity.cc │ │ │ │ ├── TriConnectivity.hh │ │ │ │ ├── TriMeshT.cc │ │ │ │ ├── TriMeshT.hh │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ └── gen │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ ├── footer.hh │ │ │ │ │ ├── generate.sh │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ └── iterators_template.hh │ │ │ ├── System │ │ │ │ ├── ACGMakefile │ │ │ │ ├── compiler.hh │ │ │ │ ├── config.h │ │ │ │ ├── config.hh │ │ │ │ ├── mostream.hh │ │ │ │ ├── omstream.cc │ │ │ │ └── omstream.hh │ │ │ ├── Templates │ │ │ │ ├── newClass.cc │ │ │ │ ├── newClass.hh │ │ │ │ ├── newClass.sh │ │ │ │ ├── newClassT.cc │ │ │ │ ├── newClassT.hh │ │ │ │ └── newClassT.sh │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ ├── BaseProperty.cc │ │ │ │ ├── BaseProperty.hh │ │ │ │ ├── Endian.cc │ │ │ │ ├── Endian.hh │ │ │ │ ├── GenProg.hh │ │ │ │ ├── Noncopyable.hh │ │ │ │ ├── Property.hh │ │ │ │ ├── PropertyContainer.hh │ │ │ │ ├── SingletonT.cc │ │ │ │ ├── SingletonT.hh │ │ │ │ ├── color_cast.hh │ │ │ │ ├── vector_cast.hh │ │ │ │ └── vector_traits.hh │ │ │ └── VS2008Core.vcproj │ │ │ ├── Examples │ │ │ ├── Examples.pro │ │ │ ├── Tutorial01 │ │ │ │ ├── Tutorial01.pro │ │ │ │ └── cube.cc │ │ │ ├── Tutorial02 │ │ │ │ ├── Tutorial02.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial03 │ │ │ │ ├── Tutorial03.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial04 │ │ │ │ ├── Tutorial04.pro │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── Tutorial05 │ │ │ │ ├── Tutorial05.pro │ │ │ │ └── properties.cc │ │ │ ├── Tutorial06 │ │ │ │ ├── Tutorial06.pro │ │ │ │ └── attributes.cc │ │ │ ├── Tutorial07 │ │ │ │ ├── Tutorial07.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial08 │ │ │ │ ├── Tutorial08.pro │ │ │ │ └── delete_geometry.cc │ │ │ ├── Tutorial09 │ │ │ │ ├── Tutorial09.pro │ │ │ │ └── io_options.cc │ │ │ └── Tutorial10 │ │ │ │ ├── Tutorial10.pro │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ └── Tools │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimater │ │ │ ├── ACGMakefile │ │ │ ├── CollapseInfoT.hh │ │ │ ├── DecimaterT.cc │ │ │ ├── DecimaterT.hh │ │ │ ├── ModBaseT.hh │ │ │ ├── ModIndependentSetsT.hh │ │ │ ├── ModNormalFlippingT.hh │ │ │ ├── ModProgMeshT.cc │ │ │ ├── ModProgMeshT.hh │ │ │ ├── ModQuadricT.cc │ │ │ ├── ModQuadricT.hh │ │ │ ├── ModRoundnessT.hh │ │ │ ├── calc-roundness.m │ │ │ ├── roundness.m │ │ │ └── roundness.sh │ │ │ ├── Dualizer │ │ │ └── meshDualT.hh │ │ │ ├── Kernel_OSG │ │ │ ├── ACGMakefile │ │ │ ├── ArrayKernelT.hh │ │ │ ├── AttribKernelT.hh │ │ │ ├── PropertyKernel.hh │ │ │ ├── PropertyT.hh │ │ │ ├── Traits.hh │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ ├── VectorAdapter.hh │ │ │ ├── bindT.hh │ │ │ └── color_cast.hh │ │ │ ├── Smoother │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ ├── LaplaceSmootherT.cc │ │ │ ├── LaplaceSmootherT.hh │ │ │ ├── SmootherT.cc │ │ │ ├── SmootherT.hh │ │ │ └── smooth_mesh.hh │ │ │ ├── Subdivider │ │ │ ├── ACGMakefile │ │ │ ├── Adaptive │ │ │ │ ├── ACGMakefile │ │ │ │ └── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ └── Traits.hh │ │ │ └── Uniform │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Composite │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CompositeT.cc │ │ │ │ ├── CompositeT.hh │ │ │ │ └── CompositeTraits.hh │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ ├── LoopT.hh │ │ │ │ ├── ModifiedButterFlyT.hh │ │ │ │ ├── Sqrt3InterpolatingSubdividerLabsikGreinerT.hh │ │ │ │ ├── Sqrt3T.hh │ │ │ │ └── SubdividerT.hh │ │ │ ├── Tools.pro │ │ │ ├── Utils │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── GLConstAsString.hh │ │ │ ├── Gnuplot.cc │ │ │ ├── Gnuplot.hh │ │ │ ├── HeapT.hh │ │ │ ├── MeshCheckerT.cc │ │ │ ├── MeshCheckerT.hh │ │ │ ├── NumLimitsT.hh │ │ │ ├── StripifierT.cc │ │ │ ├── StripifierT.hh │ │ │ ├── TestingFramework.hh │ │ │ ├── Timer.cc │ │ │ ├── Timer.hh │ │ │ ├── conio.cc │ │ │ ├── conio.hh │ │ │ ├── getopt.c │ │ │ └── getopt.h │ │ │ ├── VDPM │ │ │ ├── ACGMakefile │ │ │ ├── MeshTraits.hh │ │ │ ├── StreamingDef.hh │ │ │ ├── VFront.cc │ │ │ ├── VFront.hh │ │ │ ├── VHierarchy.cc │ │ │ ├── VHierarchy.hh │ │ │ ├── VHierarchyNode.hh │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ ├── VHierarchyWindow.cc │ │ │ ├── VHierarchyWindow.hh │ │ │ ├── ViewingParameters.cc │ │ │ ├── ViewingParameters.hh │ │ │ └── xpm │ │ │ │ ├── fileopen.xpm │ │ │ │ ├── fileprint.xpm │ │ │ │ └── filesave.xpm │ │ │ └── VS2008Tools.vcproj │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-2.0 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Doxyfile │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulator_functions.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── nav_code1.cc │ │ │ ├── nav_code2.cc │ │ │ ├── nav_code3.cc │ │ │ ├── nav_code4.cc │ │ │ ├── nav_code4a.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 07b-delete_geometry │ │ │ │ └── delete_geometry.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ ├── ACGMakefile │ │ │ └── CMakeLists.txt │ │ ├── decimater.docu │ │ ├── doxy.config.in │ │ ├── history.docu │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ ├── acg_header.html │ │ │ ├── acg_icon.gif │ │ │ ├── acg_style.css │ │ │ ├── acg_tab_b.gif │ │ │ ├── acg_tab_l.gif │ │ │ ├── acg_tab_r.gif │ │ │ └── acg_tabs.css │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ ├── mesh.collapse.png │ │ │ ├── mesh.flip.png │ │ │ ├── mesh.inner.png │ │ │ ├── mesh.inout.png │ │ │ ├── mesh.normal.png │ │ │ ├── mesh.opp.png │ │ │ ├── mesh.outer.png │ │ │ ├── om-format.png │ │ │ └── src │ │ │ │ ├── mesh.collapse.tex │ │ │ │ ├── mesh.flip.tex │ │ │ │ ├── mesh.inner.tex │ │ │ │ ├── mesh.io.tex │ │ │ │ ├── mesh.normal.tex │ │ │ │ ├── mesh.opp.tex │ │ │ │ └── mesh.outer.tex │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── navigation.docu │ │ ├── operations.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_07b.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_build.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ │ ├── COPYING │ │ ├── COPYING.EXCEPTIONS │ │ ├── COPYING.LESSER │ │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── VS2008OpenMesh.sln │ ├── cmake │ │ ├── ACGCommon.cmake │ │ ├── ACGCompiler.cmake │ │ ├── ACGDoxygen.cmake │ │ ├── ACGOutput.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGLUT.cmake │ │ ├── FindOpenMP.cmake │ │ ├── OpenMeshPackage.cmake │ │ ├── fixbundle.cmake.in │ │ └── fixbundle.cmake.win.in │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ ├── src │ │ └── OpenMesh │ │ │ ├── ACGMakefile │ │ │ ├── ACGMakefile.proj │ │ │ ├── Apps │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimating │ │ │ │ ├── CmdOption.hh │ │ │ │ ├── DecimaterGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ ├── commandlineDecimater │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ ├── decimater.cc │ │ │ │ └── decimaterviewer.cc │ │ │ ├── Dualizer │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── dualizer.cc │ │ │ ├── ProgViewer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ └── progviewer.cc │ │ │ ├── QtViewer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ ├── QtViewer.pro │ │ │ │ └── meshviewer.cc │ │ │ ├── Smoothing │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Smoothing.pro │ │ │ │ └── smooth.cc │ │ │ ├── Subdivider │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ ├── SubdividerGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ ├── qtsubdivider.cc │ │ │ │ └── subdivider.cc │ │ │ ├── Unsupported │ │ │ │ ├── IvViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ └── ivviewer.cc │ │ │ │ ├── OsgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── README │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ └── osgviewer.cc │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ └── Streaming │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ └── Server │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ ├── VDProgMesh │ │ │ │ ├── Analyzer │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ ├── Synthesizer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ └── mkbalancedpm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ └── mkbalancedpm.pro │ │ │ └── mconvert │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ ├── mconvert.cc │ │ │ │ └── mconvert.pro │ │ │ ├── Core │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Core.pro │ │ │ ├── Geometry │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ ├── MathDefs.hh │ │ │ │ ├── Plane3d.hh │ │ │ │ ├── QuadricT.hh │ │ │ │ ├── VectorT.hh │ │ │ │ └── VectorT_inc.hh │ │ │ ├── IO │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BinaryHelper.cc │ │ │ │ ├── BinaryHelper.hh │ │ │ │ ├── IOInstances.hh │ │ │ │ ├── IOManager.cc │ │ │ │ ├── IOManager.hh │ │ │ │ ├── MeshIO.hh │ │ │ │ ├── OFFFormat.hh │ │ │ │ ├── OMFormat.cc │ │ │ │ ├── OMFormat.hh │ │ │ │ ├── OMFormatT.cc │ │ │ │ ├── Options.hh │ │ │ │ ├── SR_binary.hh │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ ├── SR_rbo.hh │ │ │ │ ├── SR_store.hh │ │ │ │ ├── SR_types.hh │ │ │ │ ├── StoreRestore.hh │ │ │ │ ├── exporter │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ └── ExporterT.hh │ │ │ │ ├── importer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ └── ImporterT.hh │ │ │ │ ├── reader │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ └── STLReader.hh │ │ │ │ └── writer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ └── STLWriter.hh │ │ │ ├── Mesh │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayItems.hh │ │ │ │ ├── ArrayKernel.cc │ │ │ │ ├── ArrayKernel.hh │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── Attributes.hh │ │ │ │ ├── BaseKernel.cc │ │ │ │ ├── BaseKernel.hh │ │ │ │ ├── BaseMesh.hh │ │ │ │ ├── Casts.hh │ │ │ │ ├── CirculatorsT.hh │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ ├── Handles.hh │ │ │ │ ├── IteratorsT.hh │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ ├── PolyMeshT.cc │ │ │ │ ├── PolyMeshT.hh │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ ├── Status.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriConnectivity.cc │ │ │ │ ├── TriConnectivity.hh │ │ │ │ ├── TriMeshT.cc │ │ │ │ ├── TriMeshT.hh │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ └── gen │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ ├── footer.hh │ │ │ │ │ ├── generate.sh │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ └── iterators_template.hh │ │ │ ├── System │ │ │ │ ├── ACGMakefile │ │ │ │ ├── compiler.hh │ │ │ │ ├── config.h │ │ │ │ ├── config.hh │ │ │ │ ├── mostream.hh │ │ │ │ ├── omstream.cc │ │ │ │ └── omstream.hh │ │ │ ├── Templates │ │ │ │ ├── newClass.cc │ │ │ │ ├── newClass.hh │ │ │ │ ├── newClass.sh │ │ │ │ ├── newClassT.cc │ │ │ │ ├── newClassT.hh │ │ │ │ └── newClassT.sh │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ ├── BaseProperty.cc │ │ │ │ ├── BaseProperty.hh │ │ │ │ ├── Endian.cc │ │ │ │ ├── Endian.hh │ │ │ │ ├── GenProg.hh │ │ │ │ ├── Noncopyable.hh │ │ │ │ ├── Property.hh │ │ │ │ ├── PropertyContainer.hh │ │ │ │ ├── SingletonT.cc │ │ │ │ ├── SingletonT.hh │ │ │ │ ├── color_cast.hh │ │ │ │ ├── vector_cast.hh │ │ │ │ └── vector_traits.hh │ │ │ └── VS2008Core.vcproj │ │ │ ├── Examples │ │ │ ├── Examples.pro │ │ │ ├── Tutorial01 │ │ │ │ ├── Tutorial01.pro │ │ │ │ └── cube.cc │ │ │ ├── Tutorial02 │ │ │ │ ├── Tutorial02.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial03 │ │ │ │ ├── Tutorial03.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial04 │ │ │ │ ├── Tutorial04.pro │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── Tutorial05 │ │ │ │ ├── Tutorial05.pro │ │ │ │ └── properties.cc │ │ │ ├── Tutorial06 │ │ │ │ ├── Tutorial06.pro │ │ │ │ └── attributes.cc │ │ │ ├── Tutorial07 │ │ │ │ ├── Tutorial07.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial08 │ │ │ │ ├── Tutorial08.pro │ │ │ │ └── delete_geometry.cc │ │ │ ├── Tutorial09 │ │ │ │ ├── Tutorial09.pro │ │ │ │ └── io_options.cc │ │ │ └── Tutorial10 │ │ │ │ ├── Tutorial10.pro │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ └── Tools │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimater │ │ │ ├── ACGMakefile │ │ │ ├── CollapseInfoT.hh │ │ │ ├── DecimaterT.cc │ │ │ ├── DecimaterT.hh │ │ │ ├── ModBaseT.hh │ │ │ ├── ModIndependentSetsT.hh │ │ │ ├── ModNormalFlippingT.hh │ │ │ ├── ModProgMeshT.cc │ │ │ ├── ModProgMeshT.hh │ │ │ ├── ModQuadricT.cc │ │ │ ├── ModQuadricT.hh │ │ │ ├── ModRoundnessT.hh │ │ │ ├── calc-roundness.m │ │ │ ├── roundness.m │ │ │ └── roundness.sh │ │ │ ├── Dualizer │ │ │ └── meshDualT.hh │ │ │ ├── Kernel_OSG │ │ │ ├── ACGMakefile │ │ │ ├── ArrayKernelT.hh │ │ │ ├── AttribKernelT.hh │ │ │ ├── PropertyKernel.hh │ │ │ ├── PropertyT.hh │ │ │ ├── Traits.hh │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ ├── VectorAdapter.hh │ │ │ ├── bindT.hh │ │ │ └── color_cast.hh │ │ │ ├── Smoother │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ ├── LaplaceSmootherT.cc │ │ │ ├── LaplaceSmootherT.hh │ │ │ ├── SmootherT.cc │ │ │ ├── SmootherT.hh │ │ │ └── smooth_mesh.hh │ │ │ ├── Subdivider │ │ │ ├── ACGMakefile │ │ │ ├── Adaptive │ │ │ │ ├── ACGMakefile │ │ │ │ └── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ └── Traits.hh │ │ │ └── Uniform │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Composite │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CompositeT.cc │ │ │ │ ├── CompositeT.hh │ │ │ │ └── CompositeTraits.hh │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ ├── LoopT.hh │ │ │ │ ├── ModifiedButterFlyT.hh │ │ │ │ ├── Sqrt3InterpolatingSubdividerLabsikGreinerT.hh │ │ │ │ ├── Sqrt3T.hh │ │ │ │ └── SubdividerT.hh │ │ │ ├── Tools.pro │ │ │ ├── Utils │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── GLConstAsString.hh │ │ │ ├── Gnuplot.cc │ │ │ ├── Gnuplot.hh │ │ │ ├── HeapT.hh │ │ │ ├── MeshCheckerT.cc │ │ │ ├── MeshCheckerT.hh │ │ │ ├── NumLimitsT.hh │ │ │ ├── StripifierT.cc │ │ │ ├── StripifierT.hh │ │ │ ├── TestingFramework.hh │ │ │ ├── Timer.cc │ │ │ ├── Timer.hh │ │ │ ├── conio.cc │ │ │ ├── conio.hh │ │ │ ├── getopt.c │ │ │ └── getopt.h │ │ │ ├── VDPM │ │ │ ├── ACGMakefile │ │ │ ├── MeshTraits.hh │ │ │ ├── StreamingDef.hh │ │ │ ├── VFront.cc │ │ │ ├── VFront.hh │ │ │ ├── VHierarchy.cc │ │ │ ├── VHierarchy.hh │ │ │ ├── VHierarchyNode.hh │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ ├── VHierarchyWindow.cc │ │ │ ├── VHierarchyWindow.hh │ │ │ ├── ViewingParameters.cc │ │ │ ├── ViewingParameters.hh │ │ │ └── xpm │ │ │ │ ├── fileopen.xpm │ │ │ │ ├── fileprint.xpm │ │ │ │ └── filesave.xpm │ │ │ └── VS2008Tools.vcproj │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-2.1 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Doxyfile │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulator_functions.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── nav_code1.cc │ │ │ ├── nav_code2.cc │ │ │ ├── nav_code3.cc │ │ │ ├── nav_code4.cc │ │ │ ├── nav_code4a.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 07b-delete_geometry │ │ │ │ └── delete_geometry.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ ├── ACGMakefile │ │ │ └── CMakeLists.txt │ │ ├── changelog.docu │ │ ├── decimater.docu │ │ ├── doxy.config.in │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ └── acg_icon.gif │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ ├── iomanager.png │ │ │ ├── mesh.collapse.png │ │ │ ├── mesh.flip.png │ │ │ ├── mesh.inner.png │ │ │ ├── mesh.inout.png │ │ │ ├── mesh.normal.png │ │ │ ├── mesh.opp.png │ │ │ ├── mesh.outer.png │ │ │ ├── om-format.png │ │ │ └── src │ │ │ │ ├── iomanager.tex │ │ │ │ ├── mesh.collapse.tex │ │ │ │ ├── mesh.flip.tex │ │ │ │ ├── mesh.inner.tex │ │ │ │ ├── mesh.io.tex │ │ │ │ ├── mesh.normal.tex │ │ │ │ ├── mesh.opp.tex │ │ │ │ └── mesh.outer.tex │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── navigation.docu │ │ ├── operations.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_07b.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_build.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ │ ├── COPYING │ │ ├── COPYING.EXCEPTIONS │ │ ├── COPYING.LESSER │ │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── VS2008OpenMesh.sln │ ├── cmake │ │ ├── ACGCommon.cmake │ │ ├── ACGCompiler.cmake │ │ ├── ACGDoxygen.cmake │ │ ├── ACGOutput.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGLUT.cmake │ │ ├── FindGoogleTest.cmake │ │ ├── FindOpenMP.cmake │ │ ├── OpenMeshPackage.cmake │ │ ├── fixbundle.cmake.in │ │ └── fixbundle.cmake.win.in │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ ├── src │ │ ├── OpenMesh │ │ │ ├── ACGMakefile │ │ │ ├── ACGMakefile.proj │ │ │ ├── Apps │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimating │ │ │ │ │ ├── CmdOption.hh │ │ │ │ │ ├── DecimaterGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ │ ├── commandlineDecimater │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ │ ├── decimater.cc │ │ │ │ │ └── decimaterviewer.cc │ │ │ │ ├── Dualizer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── dualizer.cc │ │ │ │ ├── ProgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ │ └── progviewer.cc │ │ │ │ ├── QtViewer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── QtViewer.pro │ │ │ │ │ └── meshviewer.cc │ │ │ │ ├── Smoothing │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Smoothing.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Subdivider │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ │ ├── SubdividerGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ │ ├── qtsubdivider.cc │ │ │ │ │ └── subdivider.cc │ │ │ │ ├── Unsupported │ │ │ │ │ ├── IvViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ │ └── ivviewer.cc │ │ │ │ │ ├── OsgViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ │ └── osgviewer.cc │ │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ │ └── Server │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ │ └── Streaming │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ │ ├── VDProgMesh │ │ │ │ │ ├── Analyzer │ │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ │ ├── Synthesizer │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ │ └── mkbalancedpm │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ │ └── mkbalancedpm.pro │ │ │ │ └── mconvert │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ │ ├── mconvert.cc │ │ │ │ │ └── mconvert.pro │ │ │ ├── Core │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Core.pro │ │ │ │ ├── Geometry │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Config.hh │ │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ │ ├── MathDefs.hh │ │ │ │ │ ├── NormalConeT.cc │ │ │ │ │ ├── NormalConeT.hh │ │ │ │ │ ├── Plane3d.hh │ │ │ │ │ ├── QuadricT.hh │ │ │ │ │ ├── VectorT.hh │ │ │ │ │ └── VectorT_inc.hh │ │ │ │ ├── IO │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BinaryHelper.cc │ │ │ │ │ ├── BinaryHelper.hh │ │ │ │ │ ├── IOInstances.hh │ │ │ │ │ ├── IOManager.cc │ │ │ │ │ ├── IOManager.hh │ │ │ │ │ ├── MeshIO.hh │ │ │ │ │ ├── OFFFormat.hh │ │ │ │ │ ├── OMFormat.cc │ │ │ │ │ ├── OMFormat.hh │ │ │ │ │ ├── OMFormatT.cc │ │ │ │ │ ├── Options.hh │ │ │ │ │ ├── SR_binary.hh │ │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ │ ├── SR_rbo.hh │ │ │ │ │ ├── SR_store.hh │ │ │ │ │ ├── SR_types.hh │ │ │ │ │ ├── StoreRestore.hh │ │ │ │ │ ├── exporter │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ │ └── ExporterT.hh │ │ │ │ │ ├── importer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ │ └── ImporterT.hh │ │ │ │ │ ├── reader │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ │ └── STLReader.hh │ │ │ │ │ └── writer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ │ └── STLWriter.hh │ │ │ │ ├── Mesh │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ArrayItems.hh │ │ │ │ │ ├── ArrayKernel.cc │ │ │ │ │ ├── ArrayKernel.hh │ │ │ │ │ ├── AttribKernelT.hh │ │ │ │ │ ├── Attributes.hh │ │ │ │ │ ├── BaseKernel.cc │ │ │ │ │ ├── BaseKernel.hh │ │ │ │ │ ├── BaseMesh.hh │ │ │ │ │ ├── Casts.hh │ │ │ │ │ ├── CirculatorsT.hh │ │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ │ ├── Handles.hh │ │ │ │ │ ├── IteratorsT.hh │ │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ │ ├── PolyMeshT.cc │ │ │ │ │ ├── PolyMeshT.hh │ │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ │ ├── Status.hh │ │ │ │ │ ├── Traits.hh │ │ │ │ │ ├── TriConnectivity.cc │ │ │ │ │ ├── TriConnectivity.hh │ │ │ │ │ ├── TriMeshT.cc │ │ │ │ │ ├── TriMeshT.hh │ │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ │ └── gen │ │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ │ ├── footer.hh │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ │ └── iterators_template.hh │ │ │ │ ├── System │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── compiler.hh │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config.hh │ │ │ │ │ ├── mostream.hh │ │ │ │ │ ├── omstream.cc │ │ │ │ │ └── omstream.hh │ │ │ │ ├── Templates │ │ │ │ │ ├── newClass.cc │ │ │ │ │ ├── newClass.hh │ │ │ │ │ ├── newClass.sh │ │ │ │ │ ├── newClassT.cc │ │ │ │ │ ├── newClassT.hh │ │ │ │ │ └── newClassT.sh │ │ │ │ ├── Utils │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ │ ├── BaseProperty.cc │ │ │ │ │ ├── BaseProperty.hh │ │ │ │ │ ├── Endian.cc │ │ │ │ │ ├── Endian.hh │ │ │ │ │ ├── GenProg.hh │ │ │ │ │ ├── Noncopyable.hh │ │ │ │ │ ├── Property.hh │ │ │ │ │ ├── PropertyContainer.hh │ │ │ │ │ ├── SingletonT.cc │ │ │ │ │ ├── SingletonT.hh │ │ │ │ │ ├── color_cast.hh │ │ │ │ │ ├── vector_cast.hh │ │ │ │ │ └── vector_traits.hh │ │ │ │ └── VS2008Core.vcproj │ │ │ ├── Examples │ │ │ │ ├── Examples.pro │ │ │ │ ├── Tutorial01 │ │ │ │ │ ├── Tutorial01.pro │ │ │ │ │ └── cube.cc │ │ │ │ ├── Tutorial02 │ │ │ │ │ ├── Tutorial02.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial03 │ │ │ │ │ ├── Tutorial03.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial04 │ │ │ │ │ ├── Tutorial04.pro │ │ │ │ │ ├── smooth.cc │ │ │ │ │ └── smooth_algo.hh │ │ │ │ ├── Tutorial05 │ │ │ │ │ ├── Tutorial05.pro │ │ │ │ │ └── properties.cc │ │ │ │ ├── Tutorial06 │ │ │ │ │ ├── Tutorial06.pro │ │ │ │ │ └── attributes.cc │ │ │ │ ├── Tutorial07 │ │ │ │ │ ├── Tutorial07.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial08 │ │ │ │ │ ├── Tutorial08.pro │ │ │ │ │ └── delete_geometry.cc │ │ │ │ ├── Tutorial09 │ │ │ │ │ ├── Tutorial09.pro │ │ │ │ │ └── io_options.cc │ │ │ │ └── Tutorial10 │ │ │ │ │ ├── Tutorial10.pro │ │ │ │ │ ├── fill_props.hh │ │ │ │ │ ├── generate_cube.hh │ │ │ │ │ ├── int2roman.cc │ │ │ │ │ ├── int2roman.hh │ │ │ │ │ ├── persistence.cc │ │ │ │ │ └── stats.hh │ │ │ └── Tools │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimater │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CollapseInfoT.hh │ │ │ │ ├── DecimaterT.cc │ │ │ │ ├── DecimaterT.hh │ │ │ │ ├── ModAspectRatioT.cc │ │ │ │ ├── ModAspectRatioT.hh │ │ │ │ ├── ModBaseT.hh │ │ │ │ ├── ModEdgeLengthT.cc │ │ │ │ ├── ModEdgeLengthT.hh │ │ │ │ ├── ModHausdorffT.cc │ │ │ │ ├── ModHausdorffT.hh │ │ │ │ ├── ModIndependentSetsT.hh │ │ │ │ ├── ModNormalDeviationT.hh │ │ │ │ ├── ModNormalFlippingT.hh │ │ │ │ ├── ModProgMeshT.cc │ │ │ │ ├── ModProgMeshT.hh │ │ │ │ ├── ModQuadricT.cc │ │ │ │ ├── ModQuadricT.hh │ │ │ │ └── ModRoundnessT.hh │ │ │ │ ├── Dualizer │ │ │ │ └── meshDualT.hh │ │ │ │ ├── Kernel_OSG │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayKernelT.hh │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── PropertyKernel.hh │ │ │ │ ├── PropertyT.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ │ ├── VectorAdapter.hh │ │ │ │ ├── bindT.hh │ │ │ │ └── color_cast.hh │ │ │ │ ├── Smoother │ │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ │ ├── LaplaceSmootherT.cc │ │ │ │ ├── LaplaceSmootherT.hh │ │ │ │ ├── SmootherT.cc │ │ │ │ ├── SmootherT.hh │ │ │ │ └── smooth_mesh.hh │ │ │ │ ├── Subdivider │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Adaptive │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ └── Composite │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ │ └── Traits.hh │ │ │ │ └── Uniform │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ └── CompositeTraits.hh │ │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ │ ├── LongestEdgeT.hh │ │ │ │ │ ├── LoopT.hh │ │ │ │ │ ├── ModifiedButterFlyT.hh │ │ │ │ │ ├── Sqrt3InterpolatingSubdividerLabsikGreinerT.hh │ │ │ │ │ ├── Sqrt3T.hh │ │ │ │ │ └── SubdividerT.hh │ │ │ │ ├── Tools.pro │ │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── GLConstAsString.hh │ │ │ │ ├── Gnuplot.cc │ │ │ │ ├── Gnuplot.hh │ │ │ │ ├── HeapT.hh │ │ │ │ ├── MeshCheckerT.cc │ │ │ │ ├── MeshCheckerT.hh │ │ │ │ ├── NumLimitsT.hh │ │ │ │ ├── StripifierT.cc │ │ │ │ ├── StripifierT.hh │ │ │ │ ├── TestingFramework.hh │ │ │ │ ├── Timer.cc │ │ │ │ ├── Timer.hh │ │ │ │ ├── conio.cc │ │ │ │ ├── conio.hh │ │ │ │ ├── getopt.c │ │ │ │ └── getopt.h │ │ │ │ ├── VDPM │ │ │ │ ├── ACGMakefile │ │ │ │ ├── MeshTraits.hh │ │ │ │ ├── StreamingDef.hh │ │ │ │ ├── VFront.cc │ │ │ │ ├── VFront.hh │ │ │ │ ├── VHierarchy.cc │ │ │ │ ├── VHierarchy.hh │ │ │ │ ├── VHierarchyNode.hh │ │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ │ ├── VHierarchyWindow.cc │ │ │ │ ├── VHierarchyWindow.hh │ │ │ │ ├── ViewingParameters.cc │ │ │ │ ├── ViewingParameters.hh │ │ │ │ └── xpm │ │ │ │ │ ├── fileopen.xpm │ │ │ │ │ ├── fileprint.xpm │ │ │ │ │ └── filesave.xpm │ │ │ │ └── VS2008Tools.vcproj │ │ └── Unittests │ │ │ ├── CMakeLists.txt │ │ │ ├── TestFiles │ │ │ ├── cube-minimal-normals.ply │ │ │ ├── cube-minimal-vertex-colors-after-vertex-definition.obj │ │ │ ├── cube-minimal-vertex-colors-as-vc-lines.obj │ │ │ ├── cube-minimal.obj │ │ │ ├── cube-minimal.ply │ │ │ ├── cube1.off │ │ │ ├── pointCloudBadEncoding.ply │ │ │ └── pointCloudGoodEncoding.ply │ │ │ ├── unittests.cc │ │ │ ├── unittests_common.hh │ │ │ ├── unittests_decimater.hh │ │ │ ├── unittests_loading.hh │ │ │ ├── unittests_trimesh_circulators.hh │ │ │ ├── unittests_trimesh_collapse.hh │ │ │ └── unittests_trimesh_iterators.hh │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-2.2 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Doxyfile │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulator_functions.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── nav_code1.cc │ │ │ ├── nav_code2.cc │ │ │ ├── nav_code3.cc │ │ │ ├── nav_code4.cc │ │ │ ├── nav_code4a.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 07b-delete_geometry │ │ │ │ └── delete_geometry.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ ├── ACGMakefile │ │ │ └── CMakeLists.txt │ │ ├── changelog.docu │ │ ├── decimater.docu │ │ ├── doxy.config.in │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ └── acg_icon.gif │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ ├── iomanager.png │ │ │ ├── mesh.collapse.png │ │ │ ├── mesh.flip.png │ │ │ ├── mesh.inner.png │ │ │ ├── mesh.inout.png │ │ │ ├── mesh.normal.png │ │ │ ├── mesh.opp.png │ │ │ ├── mesh.outer.png │ │ │ ├── om-format.png │ │ │ └── src │ │ │ │ ├── iomanager.tex │ │ │ │ ├── mesh.collapse.tex │ │ │ │ ├── mesh.flip.tex │ │ │ │ ├── mesh.inner.tex │ │ │ │ ├── mesh.io.tex │ │ │ │ ├── mesh.normal.tex │ │ │ │ ├── mesh.opp.tex │ │ │ │ └── mesh.outer.tex │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── navigation.docu │ │ ├── operations.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_07b.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_build.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ │ ├── COPYING │ │ ├── COPYING.EXCEPTIONS │ │ ├── COPYING.LESSER │ │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── VS2008OpenMesh.sln │ ├── cmake │ │ ├── ACGCommon.cmake │ │ ├── ACGCompiler.cmake │ │ ├── ACGDoxygen.cmake │ │ ├── ACGOutput.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGLUT.cmake │ │ ├── FindGoogleTest.cmake │ │ ├── FindOpenMP.cmake │ │ ├── OpenMeshPackage.cmake │ │ ├── fixbundle.cmake.in │ │ └── fixbundle.cmake.win.in │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ ├── src │ │ ├── OpenMesh │ │ │ ├── ACGMakefile │ │ │ ├── ACGMakefile.proj │ │ │ ├── Apps │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimating │ │ │ │ │ ├── CmdOption.hh │ │ │ │ │ ├── DecimaterGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ │ ├── commandlineDecimater │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ │ ├── decimater.cc │ │ │ │ │ └── decimaterviewer.cc │ │ │ │ ├── Dualizer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── dualizer.cc │ │ │ │ ├── ProgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ │ └── progviewer.cc │ │ │ │ ├── QtViewer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── QtViewer.pro │ │ │ │ │ └── meshviewer.cc │ │ │ │ ├── Smoothing │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Smoothing.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Subdivider │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ │ ├── SubdividerGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ │ ├── qtsubdivider.cc │ │ │ │ │ └── subdivider.cc │ │ │ │ ├── Unsupported │ │ │ │ │ ├── IvViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ │ └── ivviewer.cc │ │ │ │ │ ├── OsgViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ │ └── osgviewer.cc │ │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ │ └── Server │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ │ └── Streaming │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ │ ├── VDProgMesh │ │ │ │ │ ├── Analyzer │ │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ │ ├── Synthesizer │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ │ └── mkbalancedpm │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ │ └── mkbalancedpm.pro │ │ │ │ └── mconvert │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ │ ├── mconvert.cc │ │ │ │ │ └── mconvert.pro │ │ │ ├── Core │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Core.pro │ │ │ │ ├── Geometry │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Config.hh │ │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ │ ├── MathDefs.hh │ │ │ │ │ ├── NormalConeT.cc │ │ │ │ │ ├── NormalConeT.hh │ │ │ │ │ ├── Plane3d.hh │ │ │ │ │ ├── QuadricT.hh │ │ │ │ │ ├── VectorT.hh │ │ │ │ │ └── VectorT_inc.hh │ │ │ │ ├── IO │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BinaryHelper.cc │ │ │ │ │ ├── BinaryHelper.hh │ │ │ │ │ ├── IOInstances.hh │ │ │ │ │ ├── IOManager.cc │ │ │ │ │ ├── IOManager.hh │ │ │ │ │ ├── MeshIO.hh │ │ │ │ │ ├── OFFFormat.hh │ │ │ │ │ ├── OMFormat.cc │ │ │ │ │ ├── OMFormat.hh │ │ │ │ │ ├── OMFormatT.cc │ │ │ │ │ ├── Options.hh │ │ │ │ │ ├── SR_binary.hh │ │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ │ ├── SR_rbo.hh │ │ │ │ │ ├── SR_store.hh │ │ │ │ │ ├── SR_types.hh │ │ │ │ │ ├── StoreRestore.hh │ │ │ │ │ ├── exporter │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ │ └── ExporterT.hh │ │ │ │ │ ├── importer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ │ └── ImporterT.hh │ │ │ │ │ ├── reader │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ │ └── STLReader.hh │ │ │ │ │ └── writer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ │ └── STLWriter.hh │ │ │ │ ├── Mesh │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ArrayItems.hh │ │ │ │ │ ├── ArrayKernel.cc │ │ │ │ │ ├── ArrayKernel.hh │ │ │ │ │ ├── AttribKernelT.hh │ │ │ │ │ ├── Attributes.hh │ │ │ │ │ ├── BaseKernel.cc │ │ │ │ │ ├── BaseKernel.hh │ │ │ │ │ ├── BaseMesh.hh │ │ │ │ │ ├── Casts.hh │ │ │ │ │ ├── CirculatorsT.hh │ │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ │ ├── Handles.hh │ │ │ │ │ ├── IteratorsT.hh │ │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ │ ├── PolyMeshT.cc │ │ │ │ │ ├── PolyMeshT.hh │ │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ │ ├── Status.hh │ │ │ │ │ ├── Traits.hh │ │ │ │ │ ├── TriConnectivity.cc │ │ │ │ │ ├── TriConnectivity.hh │ │ │ │ │ ├── TriMeshT.cc │ │ │ │ │ ├── TriMeshT.hh │ │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ │ └── gen │ │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ │ ├── footer.hh │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ │ └── iterators_template.hh │ │ │ │ ├── System │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── compiler.hh │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config.hh │ │ │ │ │ ├── mostream.hh │ │ │ │ │ ├── omstream.cc │ │ │ │ │ └── omstream.hh │ │ │ │ ├── Templates │ │ │ │ │ ├── newClass.cc │ │ │ │ │ ├── newClass.hh │ │ │ │ │ ├── newClass.sh │ │ │ │ │ ├── newClassT.cc │ │ │ │ │ ├── newClassT.hh │ │ │ │ │ └── newClassT.sh │ │ │ │ ├── Utils │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ │ ├── BaseProperty.cc │ │ │ │ │ ├── BaseProperty.hh │ │ │ │ │ ├── Endian.cc │ │ │ │ │ ├── Endian.hh │ │ │ │ │ ├── GenProg.hh │ │ │ │ │ ├── Noncopyable.hh │ │ │ │ │ ├── Property.hh │ │ │ │ │ ├── PropertyContainer.hh │ │ │ │ │ ├── SingletonT.cc │ │ │ │ │ ├── SingletonT.hh │ │ │ │ │ ├── color_cast.hh │ │ │ │ │ ├── vector_cast.hh │ │ │ │ │ └── vector_traits.hh │ │ │ │ └── VS2008Core.vcproj │ │ │ ├── Examples │ │ │ │ ├── Examples.pro │ │ │ │ ├── Tutorial01 │ │ │ │ │ ├── Tutorial01.pro │ │ │ │ │ └── cube.cc │ │ │ │ ├── Tutorial02 │ │ │ │ │ ├── Tutorial02.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial03 │ │ │ │ │ ├── Tutorial03.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial04 │ │ │ │ │ ├── Tutorial04.pro │ │ │ │ │ ├── smooth.cc │ │ │ │ │ └── smooth_algo.hh │ │ │ │ ├── Tutorial05 │ │ │ │ │ ├── Tutorial05.pro │ │ │ │ │ └── properties.cc │ │ │ │ ├── Tutorial06 │ │ │ │ │ ├── Tutorial06.pro │ │ │ │ │ └── attributes.cc │ │ │ │ ├── Tutorial07 │ │ │ │ │ ├── Tutorial07.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial08 │ │ │ │ │ ├── Tutorial08.pro │ │ │ │ │ └── delete_geometry.cc │ │ │ │ ├── Tutorial09 │ │ │ │ │ ├── Tutorial09.pro │ │ │ │ │ └── io_options.cc │ │ │ │ └── Tutorial10 │ │ │ │ │ ├── Tutorial10.pro │ │ │ │ │ ├── fill_props.hh │ │ │ │ │ ├── generate_cube.hh │ │ │ │ │ ├── int2roman.cc │ │ │ │ │ ├── int2roman.hh │ │ │ │ │ ├── persistence.cc │ │ │ │ │ └── stats.hh │ │ │ └── Tools │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimater │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CollapseInfoT.hh │ │ │ │ ├── DecimaterT.cc │ │ │ │ ├── DecimaterT.hh │ │ │ │ ├── ModAspectRatioT.cc │ │ │ │ ├── ModAspectRatioT.hh │ │ │ │ ├── ModBaseT.hh │ │ │ │ ├── ModEdgeLengthT.cc │ │ │ │ ├── ModEdgeLengthT.hh │ │ │ │ ├── ModHausdorffT.cc │ │ │ │ ├── ModHausdorffT.hh │ │ │ │ ├── ModIndependentSetsT.hh │ │ │ │ ├── ModNormalDeviationT.hh │ │ │ │ ├── ModNormalFlippingT.hh │ │ │ │ ├── ModProgMeshT.cc │ │ │ │ ├── ModProgMeshT.hh │ │ │ │ ├── ModQuadricT.cc │ │ │ │ ├── ModQuadricT.hh │ │ │ │ └── ModRoundnessT.hh │ │ │ │ ├── Dualizer │ │ │ │ └── meshDualT.hh │ │ │ │ ├── Kernel_OSG │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayKernelT.hh │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── PropertyKernel.hh │ │ │ │ ├── PropertyT.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ │ ├── VectorAdapter.hh │ │ │ │ ├── bindT.hh │ │ │ │ └── color_cast.hh │ │ │ │ ├── Smoother │ │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ │ ├── LaplaceSmootherT.cc │ │ │ │ ├── LaplaceSmootherT.hh │ │ │ │ ├── SmootherT.cc │ │ │ │ ├── SmootherT.hh │ │ │ │ └── smooth_mesh.hh │ │ │ │ ├── Subdivider │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Adaptive │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ └── Composite │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ │ └── Traits.hh │ │ │ │ └── Uniform │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ └── CompositeTraits.hh │ │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ │ ├── LongestEdgeT.hh │ │ │ │ │ ├── LoopT.hh │ │ │ │ │ ├── ModifiedButterFlyT.hh │ │ │ │ │ ├── Sqrt3InterpolatingSubdividerLabsikGreinerT.hh │ │ │ │ │ ├── Sqrt3T.hh │ │ │ │ │ └── SubdividerT.hh │ │ │ │ ├── Tools.pro │ │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── GLConstAsString.hh │ │ │ │ ├── Gnuplot.cc │ │ │ │ ├── Gnuplot.hh │ │ │ │ ├── HeapT.hh │ │ │ │ ├── MeshCheckerT.cc │ │ │ │ ├── MeshCheckerT.hh │ │ │ │ ├── NumLimitsT.hh │ │ │ │ ├── StripifierT.cc │ │ │ │ ├── StripifierT.hh │ │ │ │ ├── TestingFramework.hh │ │ │ │ ├── Timer.cc │ │ │ │ ├── Timer.hh │ │ │ │ ├── conio.cc │ │ │ │ ├── conio.hh │ │ │ │ ├── getopt.c │ │ │ │ └── getopt.h │ │ │ │ ├── VDPM │ │ │ │ ├── ACGMakefile │ │ │ │ ├── MeshTraits.hh │ │ │ │ ├── StreamingDef.hh │ │ │ │ ├── VFront.cc │ │ │ │ ├── VFront.hh │ │ │ │ ├── VHierarchy.cc │ │ │ │ ├── VHierarchy.hh │ │ │ │ ├── VHierarchyNode.hh │ │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ │ ├── VHierarchyWindow.cc │ │ │ │ ├── VHierarchyWindow.hh │ │ │ │ ├── ViewingParameters.cc │ │ │ │ ├── ViewingParameters.hh │ │ │ │ └── xpm │ │ │ │ │ ├── fileopen.xpm │ │ │ │ │ ├── fileprint.xpm │ │ │ │ │ └── filesave.xpm │ │ │ │ └── VS2008Tools.vcproj │ │ └── Unittests │ │ │ ├── CMakeLists.txt │ │ │ ├── TestFiles │ │ │ ├── cube-minimal-normals.ply │ │ │ ├── cube-minimal-vertex-colors-after-vertex-definition.obj │ │ │ ├── cube-minimal-vertex-colors-as-vc-lines.obj │ │ │ ├── cube-minimal.obj │ │ │ ├── cube-minimal.ply │ │ │ ├── cube1.off │ │ │ ├── cube1.stl │ │ │ ├── cube1Binary.stl │ │ │ ├── pointCloudBadEncoding.ply │ │ │ └── pointCloudGoodEncoding.ply │ │ │ ├── unittests.cc │ │ │ ├── unittests_common.hh │ │ │ ├── unittests_decimater.hh │ │ │ ├── unittests_loading.hh │ │ │ ├── unittests_property.hh │ │ │ ├── unittests_trimesh_circulators.hh │ │ │ ├── unittests_trimesh_collapse.hh │ │ │ ├── unittests_trimesh_iterators.hh │ │ │ ├── unittests_trimesh_normal_calculations.hh │ │ │ └── unittests_trimesh_others.hh │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-2.3 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulator_functions.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── nav_code1.cc │ │ │ ├── nav_code2.cc │ │ │ ├── nav_code3.cc │ │ │ ├── nav_code4.cc │ │ │ ├── nav_code4a.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 07b-delete_geometry │ │ │ │ └── delete_geometry.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ ├── ACGMakefile │ │ │ └── CMakeLists.txt │ │ ├── changelog.docu │ │ ├── decimater.docu │ │ ├── doxy.config.in │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ └── acg_icon.gif │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ ├── iomanager.png │ │ │ ├── mesh.collapse.png │ │ │ ├── mesh.flip.png │ │ │ ├── mesh.inner.png │ │ │ ├── mesh.inout.png │ │ │ ├── mesh.normal.png │ │ │ ├── mesh.opp.png │ │ │ ├── mesh.outer.png │ │ │ ├── om-format.png │ │ │ └── src │ │ │ │ ├── iomanager.tex │ │ │ │ ├── mesh.collapse.tex │ │ │ │ ├── mesh.flip.tex │ │ │ │ ├── mesh.inner.tex │ │ │ │ ├── mesh.io.tex │ │ │ │ ├── mesh.normal.tex │ │ │ │ ├── mesh.opp.tex │ │ │ │ └── mesh.outer.tex │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── navigation.docu │ │ ├── operations.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_07b.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_build.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ │ ├── COPYING │ │ ├── COPYING.EXCEPTIONS │ │ ├── COPYING.LESSER │ │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── VS2008OpenMesh.sln │ ├── cmake │ │ ├── ACGCommon.cmake │ │ ├── ACGCompiler.cmake │ │ ├── ACGDoxygen.cmake │ │ ├── ACGOutput.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGLUT.cmake │ │ ├── FindGoogleTest.cmake │ │ ├── FindOpenMP.cmake │ │ ├── OpenMeshPackage.cmake │ │ ├── fixbundle.cmake.in │ │ └── fixbundle.cmake.win.in │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ ├── src │ │ ├── OpenMesh │ │ │ ├── ACGMakefile │ │ │ ├── ACGMakefile.proj │ │ │ ├── Apps │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimating │ │ │ │ │ ├── CmdOption.hh │ │ │ │ │ ├── DecimaterGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ │ ├── commandlineDecimater │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ │ ├── decimater.cc │ │ │ │ │ └── decimaterviewer.cc │ │ │ │ ├── Dualizer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── dualizer.cc │ │ │ │ ├── ProgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ │ └── progviewer.cc │ │ │ │ ├── QtViewer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── QtViewer.pro │ │ │ │ │ └── meshviewer.cc │ │ │ │ ├── Smoothing │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Smoothing.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Subdivider │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ │ ├── SubdividerGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ │ ├── qtsubdivider.cc │ │ │ │ │ └── subdivider.cc │ │ │ │ ├── Unsupported │ │ │ │ │ ├── IvViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ │ └── ivviewer.cc │ │ │ │ │ ├── OsgViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ │ └── osgviewer.cc │ │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ │ └── Server │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ │ └── Streaming │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ │ ├── VDProgMesh │ │ │ │ │ ├── Analyzer │ │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ │ ├── Synthesizer │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ │ └── mkbalancedpm │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ │ └── mkbalancedpm.pro │ │ │ │ └── mconvert │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ │ ├── mconvert.cc │ │ │ │ │ └── mconvert.pro │ │ │ ├── Core │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Core.pro │ │ │ │ ├── Geometry │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Config.hh │ │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ │ ├── MathDefs.hh │ │ │ │ │ ├── NormalConeT.cc │ │ │ │ │ ├── NormalConeT.hh │ │ │ │ │ ├── Plane3d.hh │ │ │ │ │ ├── QuadricT.hh │ │ │ │ │ ├── VectorT.hh │ │ │ │ │ └── VectorT_inc.hh │ │ │ │ ├── IO │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BinaryHelper.cc │ │ │ │ │ ├── BinaryHelper.hh │ │ │ │ │ ├── IOInstances.hh │ │ │ │ │ ├── IOManager.cc │ │ │ │ │ ├── IOManager.hh │ │ │ │ │ ├── MeshIO.hh │ │ │ │ │ ├── OFFFormat.hh │ │ │ │ │ ├── OMFormat.cc │ │ │ │ │ ├── OMFormat.hh │ │ │ │ │ ├── OMFormatT.cc │ │ │ │ │ ├── Options.hh │ │ │ │ │ ├── SR_binary.hh │ │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ │ ├── SR_rbo.hh │ │ │ │ │ ├── SR_store.hh │ │ │ │ │ ├── SR_types.hh │ │ │ │ │ ├── StoreRestore.hh │ │ │ │ │ ├── exporter │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ │ └── ExporterT.hh │ │ │ │ │ ├── importer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ │ └── ImporterT.hh │ │ │ │ │ ├── reader │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ │ └── STLReader.hh │ │ │ │ │ └── writer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ │ └── STLWriter.hh │ │ │ │ ├── Mesh │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ArrayItems.hh │ │ │ │ │ ├── ArrayKernel.cc │ │ │ │ │ ├── ArrayKernel.hh │ │ │ │ │ ├── ArrayKernelT.cc │ │ │ │ │ ├── AttribKernelT.hh │ │ │ │ │ ├── Attributes.hh │ │ │ │ │ ├── BaseKernel.cc │ │ │ │ │ ├── BaseKernel.hh │ │ │ │ │ ├── BaseMesh.hh │ │ │ │ │ ├── Casts.hh │ │ │ │ │ ├── CirculatorsT.hh │ │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ │ ├── Handles.hh │ │ │ │ │ ├── IteratorsT.hh │ │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ │ ├── PolyMeshT.cc │ │ │ │ │ ├── PolyMeshT.hh │ │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ │ ├── Status.hh │ │ │ │ │ ├── Traits.hh │ │ │ │ │ ├── TriConnectivity.cc │ │ │ │ │ ├── TriConnectivity.hh │ │ │ │ │ ├── TriMeshT.cc │ │ │ │ │ ├── TriMeshT.hh │ │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ │ └── gen │ │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ │ ├── footer.hh │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ │ └── iterators_template.hh │ │ │ │ ├── System │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── OpenMeshDLLMacros.hh │ │ │ │ │ ├── compiler.hh │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config.hh │ │ │ │ │ ├── mostream.hh │ │ │ │ │ ├── omstream.cc │ │ │ │ │ └── omstream.hh │ │ │ │ ├── Templates │ │ │ │ │ ├── newClass.cc │ │ │ │ │ ├── newClass.hh │ │ │ │ │ ├── newClass.sh │ │ │ │ │ ├── newClassT.cc │ │ │ │ │ ├── newClassT.hh │ │ │ │ │ └── newClassT.sh │ │ │ │ ├── Utils │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ │ ├── BaseProperty.cc │ │ │ │ │ ├── BaseProperty.hh │ │ │ │ │ ├── Endian.cc │ │ │ │ │ ├── Endian.hh │ │ │ │ │ ├── GenProg.hh │ │ │ │ │ ├── Noncopyable.hh │ │ │ │ │ ├── Property.hh │ │ │ │ │ ├── PropertyContainer.hh │ │ │ │ │ ├── PropertyManager.hh │ │ │ │ │ ├── RandomNumberGenerator.cc │ │ │ │ │ ├── RandomNumberGenerator.hh │ │ │ │ │ ├── SingletonT.cc │ │ │ │ │ ├── SingletonT.hh │ │ │ │ │ ├── color_cast.hh │ │ │ │ │ ├── vector_cast.hh │ │ │ │ │ └── vector_traits.hh │ │ │ │ └── VS2008Core.vcproj │ │ │ ├── Examples │ │ │ │ ├── Examples.pro │ │ │ │ ├── Tutorial01 │ │ │ │ │ ├── Tutorial01.pro │ │ │ │ │ └── cube.cc │ │ │ │ ├── Tutorial02 │ │ │ │ │ ├── Tutorial02.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial03 │ │ │ │ │ ├── Tutorial03.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial04 │ │ │ │ │ ├── Tutorial04.pro │ │ │ │ │ ├── smooth.cc │ │ │ │ │ └── smooth_algo.hh │ │ │ │ ├── Tutorial05 │ │ │ │ │ ├── Tutorial05.pro │ │ │ │ │ └── properties.cc │ │ │ │ ├── Tutorial06 │ │ │ │ │ ├── Tutorial06.pro │ │ │ │ │ └── attributes.cc │ │ │ │ ├── Tutorial07 │ │ │ │ │ ├── Tutorial07.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial08 │ │ │ │ │ ├── Tutorial08.pro │ │ │ │ │ └── delete_geometry.cc │ │ │ │ ├── Tutorial09 │ │ │ │ │ ├── Tutorial09.pro │ │ │ │ │ └── io_options.cc │ │ │ │ └── Tutorial10 │ │ │ │ │ ├── Tutorial10.pro │ │ │ │ │ ├── fill_props.hh │ │ │ │ │ ├── generate_cube.hh │ │ │ │ │ ├── int2roman.cc │ │ │ │ │ ├── int2roman.hh │ │ │ │ │ ├── persistence.cc │ │ │ │ │ └── stats.hh │ │ │ └── Tools │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimater │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseDecimaterT.cc │ │ │ │ ├── BaseDecimaterT.hh │ │ │ │ ├── CollapseInfoT.hh │ │ │ │ ├── DecimaterT.cc │ │ │ │ ├── DecimaterT.hh │ │ │ │ ├── McDecimaterT.cc │ │ │ │ ├── McDecimaterT.hh │ │ │ │ ├── MixedDecimaterT.cc │ │ │ │ ├── MixedDecimaterT.hh │ │ │ │ ├── ModAspectRatioT.cc │ │ │ │ ├── ModAspectRatioT.hh │ │ │ │ ├── ModBaseT.hh │ │ │ │ ├── ModEdgeLengthT.cc │ │ │ │ ├── ModEdgeLengthT.hh │ │ │ │ ├── ModHausdorffT.cc │ │ │ │ ├── ModHausdorffT.hh │ │ │ │ ├── ModIndependentSetsT.hh │ │ │ │ ├── ModNormalDeviationT.hh │ │ │ │ ├── ModNormalFlippingT.hh │ │ │ │ ├── ModProgMeshT.cc │ │ │ │ ├── ModProgMeshT.hh │ │ │ │ ├── ModQuadricT.cc │ │ │ │ ├── ModQuadricT.hh │ │ │ │ └── ModRoundnessT.hh │ │ │ │ ├── Dualizer │ │ │ │ └── meshDualT.hh │ │ │ │ ├── Kernel_OSG │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayKernelT.hh │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── PropertyKernel.hh │ │ │ │ ├── PropertyT.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ │ ├── VectorAdapter.hh │ │ │ │ ├── bindT.hh │ │ │ │ └── color_cast.hh │ │ │ │ ├── Smoother │ │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ │ ├── LaplaceSmootherT.cc │ │ │ │ ├── LaplaceSmootherT.hh │ │ │ │ ├── SmootherT.cc │ │ │ │ ├── SmootherT.hh │ │ │ │ └── smooth_mesh.hh │ │ │ │ ├── Subdivider │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Adaptive │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ └── Composite │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ │ └── Traits.hh │ │ │ │ └── Uniform │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CatmullClarkT.cc │ │ │ │ │ ├── CatmullClarkT.hh │ │ │ │ │ ├── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ └── CompositeTraits.hh │ │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ │ ├── LongestEdgeT.hh │ │ │ │ │ ├── LoopT.hh │ │ │ │ │ ├── ModifiedButterFlyT.hh │ │ │ │ │ ├── Sqrt3InterpolatingSubdividerLabsikGreinerT.hh │ │ │ │ │ ├── Sqrt3T.hh │ │ │ │ │ └── SubdividerT.hh │ │ │ │ ├── Tools.pro │ │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── GLConstAsString.hh │ │ │ │ ├── Gnuplot.cc │ │ │ │ ├── Gnuplot.hh │ │ │ │ ├── HeapT.hh │ │ │ │ ├── MeshCheckerT.cc │ │ │ │ ├── MeshCheckerT.hh │ │ │ │ ├── NumLimitsT.hh │ │ │ │ ├── StripifierT.cc │ │ │ │ ├── StripifierT.hh │ │ │ │ ├── TestingFramework.hh │ │ │ │ ├── Timer.cc │ │ │ │ ├── Timer.hh │ │ │ │ ├── conio.cc │ │ │ │ ├── conio.hh │ │ │ │ ├── getopt.c │ │ │ │ └── getopt.h │ │ │ │ ├── VDPM │ │ │ │ ├── ACGMakefile │ │ │ │ ├── MeshTraits.hh │ │ │ │ ├── StreamingDef.hh │ │ │ │ ├── VFront.cc │ │ │ │ ├── VFront.hh │ │ │ │ ├── VHierarchy.cc │ │ │ │ ├── VHierarchy.hh │ │ │ │ ├── VHierarchyNode.hh │ │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ │ ├── VHierarchyWindow.cc │ │ │ │ ├── VHierarchyWindow.hh │ │ │ │ ├── ViewingParameters.cc │ │ │ │ ├── ViewingParameters.hh │ │ │ │ └── xpm │ │ │ │ │ ├── fileopen.xpm │ │ │ │ │ ├── fileprint.xpm │ │ │ │ │ └── filesave.xpm │ │ │ │ └── VS2008Tools.vcproj │ │ └── Unittests │ │ │ ├── CMakeLists.txt │ │ │ ├── TestFiles │ │ │ ├── cube-minimal-normals.ply │ │ │ ├── cube-minimal-texCoords.obj │ │ │ ├── cube-minimal-texCoords.om │ │ │ ├── cube-minimal-texCoords.ply │ │ │ ├── cube-minimal-vertex-colors-after-vertex-definition.obj │ │ │ ├── cube-minimal-vertex-colors-as-vc-lines.obj │ │ │ ├── cube-minimal-vertexColors.om │ │ │ ├── cube-minimal-vertexColors.ply │ │ │ ├── cube-minimal.obj │ │ │ ├── cube-minimal.om │ │ │ ├── cube-minimal.ply │ │ │ ├── cube1.off │ │ │ ├── cube1.stl │ │ │ ├── cube1Binary.stl │ │ │ ├── pointCloudBadEncoding.ply │ │ │ └── pointCloudGoodEncoding.ply │ │ │ ├── unittests.cc │ │ │ ├── unittests_add_face.hh │ │ │ ├── unittests_common.hh │ │ │ ├── unittests_decimater.hh │ │ │ ├── unittests_faceless_mesh.hh │ │ │ ├── unittests_loading.hh │ │ │ ├── unittests_mc_decimater.hh │ │ │ ├── unittests_mixed_decimater.hh │ │ │ ├── unittests_property.hh │ │ │ ├── unittests_randomNumberGenerator.hh │ │ │ ├── unittests_split_copy.hh │ │ │ ├── unittests_subdivider_adaptive.hh │ │ │ ├── unittests_subdivider_uniform.hh │ │ │ ├── unittests_trimesh_circulators.hh │ │ │ ├── unittests_trimesh_collapse.hh │ │ │ ├── unittests_trimesh_garbage_collection.hh │ │ │ ├── unittests_trimesh_iterators.hh │ │ │ ├── unittests_trimesh_normal_calculations.hh │ │ │ ├── unittests_trimesh_others.hh │ │ │ └── unittests_vector_type.hh │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-2.4 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulator_functions.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── nav_code1.cc │ │ │ ├── nav_code2.cc │ │ │ ├── nav_code3.cc │ │ │ ├── nav_code4.cc │ │ │ ├── nav_code4a.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 07b-delete_geometry │ │ │ │ └── delete_geometry.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ ├── ACGMakefile │ │ │ └── CMakeLists.txt │ │ ├── changelog.docu │ │ ├── decimater.docu │ │ ├── doxy.config.in │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ └── acg_icon.gif │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ ├── iomanager.png │ │ │ ├── mesh.collapse.png │ │ │ ├── mesh.flip.png │ │ │ ├── mesh.inner.png │ │ │ ├── mesh.inout.png │ │ │ ├── mesh.normal.png │ │ │ ├── mesh.opp.png │ │ │ ├── mesh.outer.png │ │ │ ├── om-format.png │ │ │ └── src │ │ │ │ ├── iomanager.tex │ │ │ │ ├── mesh.collapse.tex │ │ │ │ ├── mesh.flip.tex │ │ │ │ ├── mesh.inner.tex │ │ │ │ ├── mesh.io.tex │ │ │ │ ├── mesh.normal.tex │ │ │ │ ├── mesh.opp.tex │ │ │ │ └── mesh.outer.tex │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── navigation.docu │ │ ├── operations.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_07b.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_build.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ │ ├── COPYING │ │ ├── COPYING.EXCEPTIONS │ │ ├── COPYING.LESSER │ │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── VS2008OpenMesh.sln │ ├── cmake │ │ ├── ACGCommon.cmake │ │ ├── ACGCompiler.cmake │ │ ├── ACGDoxygen.cmake │ │ ├── ACGOutput.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGLUT.cmake │ │ ├── FindGoogleTest.cmake │ │ ├── FindOpenMP.cmake │ │ ├── OpenMeshPackage.cmake │ │ ├── fixbundle.cmake.in │ │ └── fixbundle.cmake.win.in │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ ├── src │ │ ├── OpenMesh │ │ │ ├── ACGMakefile │ │ │ ├── ACGMakefile.proj │ │ │ ├── Apps │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimating │ │ │ │ │ ├── CmdOption.hh │ │ │ │ │ ├── DecimaterGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ │ ├── commandlineDecimater │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ │ ├── decimater.cc │ │ │ │ │ └── decimaterviewer.cc │ │ │ │ ├── Dualizer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── dualizer.cc │ │ │ │ ├── ProgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ │ └── progviewer.cc │ │ │ │ ├── QtViewer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── QtViewer.pro │ │ │ │ │ └── meshviewer.cc │ │ │ │ ├── Smoothing │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Smoothing.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Subdivider │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ │ ├── SubdividerGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ │ ├── qtsubdivider.cc │ │ │ │ │ └── subdivider.cc │ │ │ │ ├── Unsupported │ │ │ │ │ ├── IvViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ │ └── ivviewer.cc │ │ │ │ │ ├── OsgViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ │ └── osgviewer.cc │ │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ │ └── Server │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ │ └── Streaming │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ │ ├── VDProgMesh │ │ │ │ │ ├── Analyzer │ │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ │ ├── Synthesizer │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ │ └── mkbalancedpm │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ │ └── mkbalancedpm.pro │ │ │ │ └── mconvert │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ │ ├── mconvert.cc │ │ │ │ │ └── mconvert.pro │ │ │ ├── Core │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Core.pro │ │ │ │ ├── Geometry │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Config.hh │ │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ │ ├── MathDefs.hh │ │ │ │ │ ├── NormalConeT.cc │ │ │ │ │ ├── NormalConeT.hh │ │ │ │ │ ├── Plane3d.hh │ │ │ │ │ ├── QuadricT.hh │ │ │ │ │ ├── VectorT.hh │ │ │ │ │ └── VectorT_inc.hh │ │ │ │ ├── IO │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BinaryHelper.cc │ │ │ │ │ ├── BinaryHelper.hh │ │ │ │ │ ├── IOInstances.hh │ │ │ │ │ ├── IOManager.cc │ │ │ │ │ ├── IOManager.hh │ │ │ │ │ ├── MeshIO.hh │ │ │ │ │ ├── OFFFormat.hh │ │ │ │ │ ├── OMFormat.cc │ │ │ │ │ ├── OMFormat.hh │ │ │ │ │ ├── OMFormatT.cc │ │ │ │ │ ├── Options.hh │ │ │ │ │ ├── SR_binary.hh │ │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ │ ├── SR_rbo.hh │ │ │ │ │ ├── SR_store.hh │ │ │ │ │ ├── SR_types.hh │ │ │ │ │ ├── StoreRestore.hh │ │ │ │ │ ├── exporter │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ │ └── ExporterT.hh │ │ │ │ │ ├── importer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ │ └── ImporterT.hh │ │ │ │ │ ├── reader │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ │ └── STLReader.hh │ │ │ │ │ └── writer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ │ └── STLWriter.hh │ │ │ │ ├── Mesh │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ArrayItems.hh │ │ │ │ │ ├── ArrayKernel.cc │ │ │ │ │ ├── ArrayKernel.hh │ │ │ │ │ ├── ArrayKernelT.cc │ │ │ │ │ ├── AttribKernelT.hh │ │ │ │ │ ├── Attributes.hh │ │ │ │ │ ├── BaseKernel.cc │ │ │ │ │ ├── BaseKernel.hh │ │ │ │ │ ├── BaseMesh.hh │ │ │ │ │ ├── Casts.hh │ │ │ │ │ ├── CirculatorsT.hh │ │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ │ ├── Handles.hh │ │ │ │ │ ├── IteratorsT.hh │ │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ │ ├── PolyMeshT.cc │ │ │ │ │ ├── PolyMeshT.hh │ │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ │ ├── Status.hh │ │ │ │ │ ├── Traits.hh │ │ │ │ │ ├── TriConnectivity.cc │ │ │ │ │ ├── TriConnectivity.hh │ │ │ │ │ ├── TriMeshT.cc │ │ │ │ │ ├── TriMeshT.hh │ │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ │ └── gen │ │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ │ ├── footer.hh │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ │ └── iterators_template.hh │ │ │ │ ├── System │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── OpenMeshDLLMacros.hh │ │ │ │ │ ├── compiler.hh │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config.hh │ │ │ │ │ ├── mostream.hh │ │ │ │ │ ├── omstream.cc │ │ │ │ │ └── omstream.hh │ │ │ │ ├── Templates │ │ │ │ │ ├── newClass.cc │ │ │ │ │ ├── newClass.hh │ │ │ │ │ ├── newClass.sh │ │ │ │ │ ├── newClassT.cc │ │ │ │ │ ├── newClassT.hh │ │ │ │ │ └── newClassT.sh │ │ │ │ ├── Utils │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ │ ├── BaseProperty.cc │ │ │ │ │ ├── BaseProperty.hh │ │ │ │ │ ├── Endian.cc │ │ │ │ │ ├── Endian.hh │ │ │ │ │ ├── GenProg.hh │ │ │ │ │ ├── Noncopyable.hh │ │ │ │ │ ├── Property.hh │ │ │ │ │ ├── PropertyContainer.hh │ │ │ │ │ ├── PropertyManager.hh │ │ │ │ │ ├── RandomNumberGenerator.cc │ │ │ │ │ ├── RandomNumberGenerator.hh │ │ │ │ │ ├── SingletonT.cc │ │ │ │ │ ├── SingletonT.hh │ │ │ │ │ ├── color_cast.hh │ │ │ │ │ ├── vector_cast.hh │ │ │ │ │ └── vector_traits.hh │ │ │ │ └── VS2008Core.vcproj │ │ │ ├── Examples │ │ │ │ ├── Examples.pro │ │ │ │ ├── Tutorial01 │ │ │ │ │ ├── Tutorial01.pro │ │ │ │ │ └── cube.cc │ │ │ │ ├── Tutorial02 │ │ │ │ │ ├── Tutorial02.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial03 │ │ │ │ │ ├── Tutorial03.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial04 │ │ │ │ │ ├── Tutorial04.pro │ │ │ │ │ ├── smooth.cc │ │ │ │ │ └── smooth_algo.hh │ │ │ │ ├── Tutorial05 │ │ │ │ │ ├── Tutorial05.pro │ │ │ │ │ └── properties.cc │ │ │ │ ├── Tutorial06 │ │ │ │ │ ├── Tutorial06.pro │ │ │ │ │ └── attributes.cc │ │ │ │ ├── Tutorial07 │ │ │ │ │ ├── Tutorial07.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial08 │ │ │ │ │ ├── Tutorial08.pro │ │ │ │ │ └── delete_geometry.cc │ │ │ │ ├── Tutorial09 │ │ │ │ │ ├── Tutorial09.pro │ │ │ │ │ └── io_options.cc │ │ │ │ └── Tutorial10 │ │ │ │ │ ├── Tutorial10.pro │ │ │ │ │ ├── fill_props.hh │ │ │ │ │ ├── generate_cube.hh │ │ │ │ │ ├── int2roman.cc │ │ │ │ │ ├── int2roman.hh │ │ │ │ │ ├── persistence.cc │ │ │ │ │ └── stats.hh │ │ │ └── Tools │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimater │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseDecimaterT.cc │ │ │ │ ├── BaseDecimaterT.hh │ │ │ │ ├── CollapseInfoT.hh │ │ │ │ ├── DecimaterT.cc │ │ │ │ ├── DecimaterT.hh │ │ │ │ ├── McDecimaterT.cc │ │ │ │ ├── McDecimaterT.hh │ │ │ │ ├── MixedDecimaterT.cc │ │ │ │ ├── MixedDecimaterT.hh │ │ │ │ ├── ModAspectRatioT.cc │ │ │ │ ├── ModAspectRatioT.hh │ │ │ │ ├── ModBaseT.hh │ │ │ │ ├── ModEdgeLengthT.cc │ │ │ │ ├── ModEdgeLengthT.hh │ │ │ │ ├── ModHausdorffT.cc │ │ │ │ ├── ModHausdorffT.hh │ │ │ │ ├── ModIndependentSetsT.hh │ │ │ │ ├── ModNormalDeviationT.hh │ │ │ │ ├── ModNormalFlippingT.hh │ │ │ │ ├── ModProgMeshT.cc │ │ │ │ ├── ModProgMeshT.hh │ │ │ │ ├── ModQuadricT.cc │ │ │ │ ├── ModQuadricT.hh │ │ │ │ └── ModRoundnessT.hh │ │ │ │ ├── Dualizer │ │ │ │ └── meshDualT.hh │ │ │ │ ├── Kernel_OSG │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayKernelT.hh │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── PropertyKernel.hh │ │ │ │ ├── PropertyT.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ │ ├── VectorAdapter.hh │ │ │ │ ├── bindT.hh │ │ │ │ └── color_cast.hh │ │ │ │ ├── Smoother │ │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ │ ├── LaplaceSmootherT.cc │ │ │ │ ├── LaplaceSmootherT.hh │ │ │ │ ├── SmootherT.cc │ │ │ │ ├── SmootherT.hh │ │ │ │ └── smooth_mesh.hh │ │ │ │ ├── Subdivider │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Adaptive │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ └── Composite │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ │ └── Traits.hh │ │ │ │ └── Uniform │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CatmullClarkT.cc │ │ │ │ │ ├── CatmullClarkT.hh │ │ │ │ │ ├── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ └── CompositeTraits.hh │ │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ │ ├── LongestEdgeT.hh │ │ │ │ │ ├── LoopT.hh │ │ │ │ │ ├── ModifiedButterFlyT.hh │ │ │ │ │ ├── Sqrt3InterpolatingSubdividerLabsikGreinerT.hh │ │ │ │ │ ├── Sqrt3T.hh │ │ │ │ │ └── SubdividerT.hh │ │ │ │ ├── Tools.pro │ │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── GLConstAsString.hh │ │ │ │ ├── Gnuplot.cc │ │ │ │ ├── Gnuplot.hh │ │ │ │ ├── HeapT.hh │ │ │ │ ├── MeshCheckerT.cc │ │ │ │ ├── MeshCheckerT.hh │ │ │ │ ├── NumLimitsT.hh │ │ │ │ ├── StripifierT.cc │ │ │ │ ├── StripifierT.hh │ │ │ │ ├── TestingFramework.hh │ │ │ │ ├── Timer.cc │ │ │ │ ├── Timer.hh │ │ │ │ ├── conio.cc │ │ │ │ ├── conio.hh │ │ │ │ ├── getopt.c │ │ │ │ └── getopt.h │ │ │ │ ├── VDPM │ │ │ │ ├── ACGMakefile │ │ │ │ ├── MeshTraits.hh │ │ │ │ ├── StreamingDef.hh │ │ │ │ ├── VFront.cc │ │ │ │ ├── VFront.hh │ │ │ │ ├── VHierarchy.cc │ │ │ │ ├── VHierarchy.hh │ │ │ │ ├── VHierarchyNode.hh │ │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ │ ├── VHierarchyWindow.cc │ │ │ │ ├── VHierarchyWindow.hh │ │ │ │ ├── ViewingParameters.cc │ │ │ │ ├── ViewingParameters.hh │ │ │ │ └── xpm │ │ │ │ │ ├── fileopen.xpm │ │ │ │ │ ├── fileprint.xpm │ │ │ │ │ └── filesave.xpm │ │ │ │ └── VS2008Tools.vcproj │ │ └── Unittests │ │ │ ├── CMakeLists.txt │ │ │ ├── TestFiles │ │ │ ├── cube-minimal-normals.ply │ │ │ ├── cube-minimal-texCoords.obj │ │ │ ├── cube-minimal-texCoords.om │ │ │ ├── cube-minimal-texCoords.ply │ │ │ ├── cube-minimal-vertex-colors-after-vertex-definition.obj │ │ │ ├── cube-minimal-vertex-colors-as-vc-lines.obj │ │ │ ├── cube-minimal-vertexColors.om │ │ │ ├── cube-minimal-vertexColors.ply │ │ │ ├── cube-minimal.obj │ │ │ ├── cube-minimal.om │ │ │ ├── cube-minimal.ply │ │ │ ├── cube1.off │ │ │ ├── cube1.stl │ │ │ ├── cube1Binary.stl │ │ │ ├── meshlab.ply │ │ │ ├── pointCloudBadEncoding.ply │ │ │ ├── pointCloudGoodEncoding.ply │ │ │ ├── square_material.mtl │ │ │ └── square_material.obj │ │ │ ├── unittests.cc │ │ │ ├── unittests_add_face.hh │ │ │ ├── unittests_boundary.hh │ │ │ ├── unittests_common.hh │ │ │ ├── unittests_decimater.hh │ │ │ ├── unittests_delete_face.hh │ │ │ ├── unittests_faceless_mesh.hh │ │ │ ├── unittests_mc_decimater.hh │ │ │ ├── unittests_mixed_decimater.hh │ │ │ ├── unittests_property.hh │ │ │ ├── unittests_randomNumberGenerator.hh │ │ │ ├── unittests_read_write_OBJ.hh │ │ │ ├── unittests_read_write_OFF.hh │ │ │ ├── unittests_read_write_OM.hh │ │ │ ├── unittests_read_write_PLY.hh │ │ │ ├── unittests_read_write_STL.hh │ │ │ ├── unittests_split_copy.hh │ │ │ ├── unittests_subdivider_adaptive.hh │ │ │ ├── unittests_subdivider_uniform.hh │ │ │ ├── unittests_trimesh_circulator_face_edge.hh │ │ │ ├── unittests_trimesh_circulator_face_face.hh │ │ │ ├── unittests_trimesh_circulator_face_halfedge.hh │ │ │ ├── unittests_trimesh_circulator_face_vertex.hh │ │ │ ├── unittests_trimesh_circulator_vertex_edge.hh │ │ │ ├── unittests_trimesh_circulator_vertex_face.hh │ │ │ ├── unittests_trimesh_circulator_vertex_ihalfedge.hh │ │ │ ├── unittests_trimesh_circulator_vertex_ohalfedge.hh │ │ │ ├── unittests_trimesh_circulator_vertex_vertex.hh │ │ │ ├── unittests_trimesh_collapse.hh │ │ │ ├── unittests_trimesh_garbage_collection.hh │ │ │ ├── unittests_trimesh_iterators.hh │ │ │ ├── unittests_trimesh_normal_calculations.hh │ │ │ ├── unittests_trimesh_others.hh │ │ │ └── unittests_vector_type.hh │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-3.0 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulator_functions.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── nav_code1.cc │ │ │ ├── nav_code2.cc │ │ │ ├── nav_code3.cc │ │ │ ├── nav_code4.cc │ │ │ ├── nav_code4a.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 07b-delete_geometry │ │ │ │ └── delete_geometry.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ ├── ACGMakefile │ │ │ └── CMakeLists.txt │ │ ├── changelog.docu │ │ ├── decimater.docu │ │ ├── doxy.config.in │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ └── acg_icon.gif │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ ├── iomanager.png │ │ │ ├── mesh.collapse.png │ │ │ ├── mesh.flip.png │ │ │ ├── mesh.inner.png │ │ │ ├── mesh.inout.png │ │ │ ├── mesh.normal.png │ │ │ ├── mesh.opp.png │ │ │ ├── mesh.outer.png │ │ │ ├── om-format.png │ │ │ └── src │ │ │ │ ├── iomanager.tex │ │ │ │ ├── mesh.collapse.tex │ │ │ │ ├── mesh.flip.tex │ │ │ │ ├── mesh.inner.tex │ │ │ │ ├── mesh.io.tex │ │ │ │ ├── mesh.normal.tex │ │ │ │ ├── mesh.opp.tex │ │ │ │ └── mesh.outer.tex │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── navigation.docu │ │ ├── operations.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_07b.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_build.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ │ ├── COPYING │ │ ├── COPYING.EXCEPTIONS │ │ ├── COPYING.LESSER │ │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── cmake │ │ ├── ACGCommon.cmake │ │ ├── ACGCompiler.cmake │ │ ├── ACGDoxygen.cmake │ │ ├── ACGOutput.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGLUT.cmake │ │ ├── FindGoogleTest.cmake │ │ ├── FindOpenMP.cmake │ │ ├── OpenMeshPackage.cmake │ │ ├── fixbundle.cmake.in │ │ └── fixbundle.cmake.win.in │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ ├── src │ │ ├── OpenMesh │ │ │ ├── ACGMakefile │ │ │ ├── ACGMakefile.proj │ │ │ ├── Apps │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimating │ │ │ │ │ ├── CmdOption.hh │ │ │ │ │ ├── DecimaterGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ │ ├── commandlineDecimater │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ │ ├── decimater.cc │ │ │ │ │ └── decimaterviewer.cc │ │ │ │ ├── Dualizer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── dualizer.cc │ │ │ │ ├── ProgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ │ └── progviewer.cc │ │ │ │ ├── QtViewer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── QtViewer.pro │ │ │ │ │ └── meshviewer.cc │ │ │ │ ├── Smoothing │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Smoothing.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Subdivider │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ │ ├── SubdividerGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ │ ├── qtsubdivider.cc │ │ │ │ │ └── subdivider.cc │ │ │ │ ├── Unsupported │ │ │ │ │ ├── IvViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ │ └── ivviewer.cc │ │ │ │ │ ├── OsgViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ │ └── osgviewer.cc │ │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ │ └── Server │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ │ └── Streaming │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ │ ├── VDProgMesh │ │ │ │ │ ├── Analyzer │ │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ │ ├── Synthesizer │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ │ └── mkbalancedpm │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ │ └── mkbalancedpm.pro │ │ │ │ └── mconvert │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ │ ├── mconvert.cc │ │ │ │ │ └── mconvert.pro │ │ │ ├── Core │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Core.pro │ │ │ │ ├── Geometry │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Config.hh │ │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ │ ├── MathDefs.hh │ │ │ │ │ ├── NormalConeT.cc │ │ │ │ │ ├── NormalConeT.hh │ │ │ │ │ ├── Plane3d.hh │ │ │ │ │ ├── QuadricT.hh │ │ │ │ │ ├── VectorT.hh │ │ │ │ │ └── VectorT_inc.hh │ │ │ │ ├── IO │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BinaryHelper.cc │ │ │ │ │ ├── BinaryHelper.hh │ │ │ │ │ ├── IOInstances.hh │ │ │ │ │ ├── IOManager.cc │ │ │ │ │ ├── IOManager.hh │ │ │ │ │ ├── MeshIO.hh │ │ │ │ │ ├── OFFFormat.hh │ │ │ │ │ ├── OMFormat.cc │ │ │ │ │ ├── OMFormat.hh │ │ │ │ │ ├── OMFormatT.cc │ │ │ │ │ ├── Options.hh │ │ │ │ │ ├── SR_binary.hh │ │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ │ ├── SR_rbo.hh │ │ │ │ │ ├── SR_store.hh │ │ │ │ │ ├── SR_types.hh │ │ │ │ │ ├── StoreRestore.hh │ │ │ │ │ ├── exporter │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ │ └── ExporterT.hh │ │ │ │ │ ├── importer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ │ └── ImporterT.hh │ │ │ │ │ ├── reader │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ │ └── STLReader.hh │ │ │ │ │ └── writer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ │ └── STLWriter.hh │ │ │ │ ├── Mesh │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ArrayItems.hh │ │ │ │ │ ├── ArrayKernel.cc │ │ │ │ │ ├── ArrayKernel.hh │ │ │ │ │ ├── ArrayKernelT.cc │ │ │ │ │ ├── AttribKernelT.hh │ │ │ │ │ ├── Attributes.hh │ │ │ │ │ ├── BaseKernel.cc │ │ │ │ │ ├── BaseKernel.hh │ │ │ │ │ ├── BaseMesh.hh │ │ │ │ │ ├── Casts.hh │ │ │ │ │ ├── CirculatorsT.hh │ │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ │ ├── Handles.hh │ │ │ │ │ ├── IteratorsT.hh │ │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ │ ├── PolyMeshT.cc │ │ │ │ │ ├── PolyMeshT.hh │ │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ │ ├── Status.hh │ │ │ │ │ ├── Traits.hh │ │ │ │ │ ├── TriConnectivity.cc │ │ │ │ │ ├── TriConnectivity.hh │ │ │ │ │ ├── TriMeshT.cc │ │ │ │ │ ├── TriMeshT.hh │ │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ │ └── gen │ │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ │ ├── footer.hh │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ │ └── iterators_template.hh │ │ │ │ ├── System │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── OpenMeshDLLMacros.hh │ │ │ │ │ ├── compiler.hh │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config.hh │ │ │ │ │ ├── mostream.hh │ │ │ │ │ ├── omstream.cc │ │ │ │ │ └── omstream.hh │ │ │ │ ├── Templates │ │ │ │ │ ├── newClass.cc │ │ │ │ │ ├── newClass.hh │ │ │ │ │ ├── newClass.sh │ │ │ │ │ ├── newClassT.cc │ │ │ │ │ ├── newClassT.hh │ │ │ │ │ └── newClassT.sh │ │ │ │ ├── Utils │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ │ ├── BaseProperty.cc │ │ │ │ │ ├── BaseProperty.hh │ │ │ │ │ ├── Endian.cc │ │ │ │ │ ├── Endian.hh │ │ │ │ │ ├── GenProg.hh │ │ │ │ │ ├── Noncopyable.hh │ │ │ │ │ ├── Property.hh │ │ │ │ │ ├── PropertyContainer.hh │ │ │ │ │ ├── PropertyManager.hh │ │ │ │ │ ├── RandomNumberGenerator.cc │ │ │ │ │ ├── RandomNumberGenerator.hh │ │ │ │ │ ├── SingletonT.cc │ │ │ │ │ ├── SingletonT.hh │ │ │ │ │ ├── color_cast.hh │ │ │ │ │ ├── vector_cast.hh │ │ │ │ │ └── vector_traits.hh │ │ │ │ └── VS2008Core.vcproj │ │ │ ├── Examples │ │ │ │ ├── Examples.pro │ │ │ │ ├── Tutorial01 │ │ │ │ │ ├── Tutorial01.pro │ │ │ │ │ └── cube.cc │ │ │ │ ├── Tutorial02 │ │ │ │ │ ├── Tutorial02.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial03 │ │ │ │ │ ├── Tutorial03.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial04 │ │ │ │ │ ├── Tutorial04.pro │ │ │ │ │ ├── smooth.cc │ │ │ │ │ └── smooth_algo.hh │ │ │ │ ├── Tutorial05 │ │ │ │ │ ├── Tutorial05.pro │ │ │ │ │ └── properties.cc │ │ │ │ ├── Tutorial06 │ │ │ │ │ ├── Tutorial06.pro │ │ │ │ │ └── attributes.cc │ │ │ │ ├── Tutorial07 │ │ │ │ │ ├── Tutorial07.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial08 │ │ │ │ │ ├── Tutorial08.pro │ │ │ │ │ └── delete_geometry.cc │ │ │ │ ├── Tutorial09 │ │ │ │ │ ├── Tutorial09.pro │ │ │ │ │ └── io_options.cc │ │ │ │ └── Tutorial10 │ │ │ │ │ ├── Tutorial10.pro │ │ │ │ │ ├── fill_props.hh │ │ │ │ │ ├── generate_cube.hh │ │ │ │ │ ├── int2roman.cc │ │ │ │ │ ├── int2roman.hh │ │ │ │ │ ├── persistence.cc │ │ │ │ │ └── stats.hh │ │ │ └── Tools │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimater │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseDecimaterT.cc │ │ │ │ ├── BaseDecimaterT.hh │ │ │ │ ├── CollapseInfoT.hh │ │ │ │ ├── DecimaterT.cc │ │ │ │ ├── DecimaterT.hh │ │ │ │ ├── McDecimaterT.cc │ │ │ │ ├── McDecimaterT.hh │ │ │ │ ├── MixedDecimaterT.cc │ │ │ │ ├── MixedDecimaterT.hh │ │ │ │ ├── ModAspectRatioT.cc │ │ │ │ ├── ModAspectRatioT.hh │ │ │ │ ├── ModBaseT.hh │ │ │ │ ├── ModEdgeLengthT.cc │ │ │ │ ├── ModEdgeLengthT.hh │ │ │ │ ├── ModHausdorffT.cc │ │ │ │ ├── ModHausdorffT.hh │ │ │ │ ├── ModIndependentSetsT.hh │ │ │ │ ├── ModNormalDeviationT.hh │ │ │ │ ├── ModNormalFlippingT.hh │ │ │ │ ├── ModProgMeshT.cc │ │ │ │ ├── ModProgMeshT.hh │ │ │ │ ├── ModQuadricT.cc │ │ │ │ ├── ModQuadricT.hh │ │ │ │ └── ModRoundnessT.hh │ │ │ │ ├── Dualizer │ │ │ │ └── meshDualT.hh │ │ │ │ ├── Kernel_OSG │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayKernelT.hh │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── PropertyKernel.hh │ │ │ │ ├── PropertyT.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ │ ├── VectorAdapter.hh │ │ │ │ ├── bindT.hh │ │ │ │ └── color_cast.hh │ │ │ │ ├── Smoother │ │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ │ ├── LaplaceSmootherT.cc │ │ │ │ ├── LaplaceSmootherT.hh │ │ │ │ ├── SmootherT.cc │ │ │ │ ├── SmootherT.hh │ │ │ │ └── smooth_mesh.hh │ │ │ │ ├── Subdivider │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Adaptive │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ └── Composite │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ │ └── Traits.hh │ │ │ │ └── Uniform │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CatmullClarkT.cc │ │ │ │ │ ├── CatmullClarkT.hh │ │ │ │ │ ├── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ └── CompositeTraits.hh │ │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ │ ├── LongestEdgeT.hh │ │ │ │ │ ├── LoopT.hh │ │ │ │ │ ├── ModifiedButterFlyT.hh │ │ │ │ │ ├── Sqrt3InterpolatingSubdividerLabsikGreinerT.hh │ │ │ │ │ ├── Sqrt3T.hh │ │ │ │ │ └── SubdividerT.hh │ │ │ │ ├── Tools.pro │ │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── GLConstAsString.hh │ │ │ │ ├── Gnuplot.cc │ │ │ │ ├── Gnuplot.hh │ │ │ │ ├── HeapT.hh │ │ │ │ ├── MeshCheckerT.cc │ │ │ │ ├── MeshCheckerT.hh │ │ │ │ ├── NumLimitsT.hh │ │ │ │ ├── StripifierT.cc │ │ │ │ ├── StripifierT.hh │ │ │ │ ├── TestingFramework.hh │ │ │ │ ├── Timer.cc │ │ │ │ ├── Timer.hh │ │ │ │ ├── conio.cc │ │ │ │ ├── conio.hh │ │ │ │ ├── getopt.c │ │ │ │ └── getopt.h │ │ │ │ ├── VDPM │ │ │ │ ├── ACGMakefile │ │ │ │ ├── MeshTraits.hh │ │ │ │ ├── StreamingDef.hh │ │ │ │ ├── VFront.cc │ │ │ │ ├── VFront.hh │ │ │ │ ├── VHierarchy.cc │ │ │ │ ├── VHierarchy.hh │ │ │ │ ├── VHierarchyNode.hh │ │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ │ ├── VHierarchyWindow.cc │ │ │ │ ├── VHierarchyWindow.hh │ │ │ │ ├── ViewingParameters.cc │ │ │ │ ├── ViewingParameters.hh │ │ │ │ └── xpm │ │ │ │ │ ├── fileopen.xpm │ │ │ │ │ ├── fileprint.xpm │ │ │ │ │ └── filesave.xpm │ │ │ │ └── VS2008Tools.vcproj │ │ └── Unittests │ │ │ ├── CMakeLists.txt │ │ │ ├── TestFiles │ │ │ ├── cube-minimal-normals.ply │ │ │ ├── cube-minimal-texCoords.obj │ │ │ ├── cube-minimal-texCoords.om │ │ │ ├── cube-minimal-texCoords.ply │ │ │ ├── cube-minimal-vertex-colors-after-vertex-definition.obj │ │ │ ├── cube-minimal-vertex-colors-as-vc-lines.obj │ │ │ ├── cube-minimal-vertexColors.om │ │ │ ├── cube-minimal-vertexColors.ply │ │ │ ├── cube-minimal.obj │ │ │ ├── cube-minimal.om │ │ │ ├── cube-minimal.ply │ │ │ ├── cube1.off │ │ │ ├── cube1.stl │ │ │ ├── cube1Binary.stl │ │ │ ├── cube1_customProps.om │ │ │ ├── meshlab.ply │ │ │ ├── pointCloudBadEncoding.ply │ │ │ ├── pointCloudGoodEncoding.ply │ │ │ ├── square_material.mtl │ │ │ └── square_material.obj │ │ │ ├── fill_props.hh │ │ │ ├── generate_cube.hh │ │ │ ├── int2roman.hh │ │ │ ├── unittests.cc │ │ │ ├── unittests_add_face.cc │ │ │ ├── unittests_boundary.cc │ │ │ ├── unittests_common.hh │ │ │ ├── unittests_decimater.cc │ │ │ ├── unittests_delete_face.cc │ │ │ ├── unittests_faceless_mesh.cc │ │ │ ├── unittests_mc_decimater.cc │ │ │ ├── unittests_mesh_cast.cc │ │ │ ├── unittests_mesh_dual.cc │ │ │ ├── unittests_mixed_decimater.cc │ │ │ ├── unittests_property.cc │ │ │ ├── unittests_randomNumberGenerator.cc │ │ │ ├── unittests_read_write_OBJ.cc │ │ │ ├── unittests_read_write_OFF.cc │ │ │ ├── unittests_read_write_OM.cc │ │ │ ├── unittests_read_write_PLY.cc │ │ │ ├── unittests_read_write_STL.cc │ │ │ ├── unittests_split_copy.cc │ │ │ ├── unittests_stripifier.cc │ │ │ ├── unittests_subdivider_adaptive.cc │ │ │ ├── unittests_subdivider_uniform.cc │ │ │ ├── unittests_trimesh_circulator_current_halfedge_handle_replacement.cc │ │ │ ├── unittests_trimesh_circulator_face_edge.cc │ │ │ ├── unittests_trimesh_circulator_face_face.cc │ │ │ ├── unittests_trimesh_circulator_face_halfedge.cc │ │ │ ├── unittests_trimesh_circulator_face_vertex.cc │ │ │ ├── unittests_trimesh_circulator_halfedge_loop.cc │ │ │ ├── unittests_trimesh_circulator_vertex_edge.cc │ │ │ ├── unittests_trimesh_circulator_vertex_face.cc │ │ │ ├── unittests_trimesh_circulator_vertex_ihalfedge.cc │ │ │ ├── unittests_trimesh_circulator_vertex_ohalfedge.cc │ │ │ ├── unittests_trimesh_circulator_vertex_vertex.cc │ │ │ ├── unittests_trimesh_collapse.cc │ │ │ ├── unittests_trimesh_garbage_collection.cc │ │ │ ├── unittests_trimesh_iterators.cc │ │ │ ├── unittests_trimesh_normal_calculations.cc │ │ │ ├── unittests_trimesh_others.cc │ │ │ ├── unittests_tutorials.cc │ │ │ └── unittests_vector_type.cc │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-3.1 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulator_functions.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── nav_code1.cc │ │ │ ├── nav_code2.cc │ │ │ ├── nav_code3.cc │ │ │ ├── nav_code4.cc │ │ │ ├── nav_code4a.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 07b-delete_geometry │ │ │ │ └── delete_geometry.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ ├── ACGMakefile │ │ │ └── CMakeLists.txt │ │ ├── changelog.docu │ │ ├── decimater.docu │ │ ├── doxy.config.in │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ └── acg_icon.gif │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ ├── iomanager.png │ │ │ ├── mesh.collapse.png │ │ │ ├── mesh.flip.png │ │ │ ├── mesh.inner.png │ │ │ ├── mesh.inout.png │ │ │ ├── mesh.normal.png │ │ │ ├── mesh.opp.png │ │ │ ├── mesh.outer.png │ │ │ ├── om-format.png │ │ │ └── src │ │ │ │ ├── iomanager.tex │ │ │ │ ├── mesh.collapse.tex │ │ │ │ ├── mesh.flip.tex │ │ │ │ ├── mesh.inner.tex │ │ │ │ ├── mesh.io.tex │ │ │ │ ├── mesh.normal.tex │ │ │ │ ├── mesh.opp.tex │ │ │ │ └── mesh.outer.tex │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── navigation.docu │ │ ├── operations.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_07b.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_build.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ │ ├── COPYING │ │ ├── COPYING.EXCEPTIONS │ │ ├── COPYING.LESSER │ │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── cmake │ │ ├── ACGCommon.cmake │ │ ├── ACGCompiler.cmake │ │ ├── ACGDoxygen.cmake │ │ ├── ACGOutput.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGLUT.cmake │ │ ├── FindGoogleTest.cmake │ │ ├── FindOpenMP.cmake │ │ ├── FindOpenMesh.cmake │ │ ├── OpenMeshPackage.cmake │ │ ├── fixbundle.cmake.in │ │ └── fixbundle.cmake.win.in │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ ├── src │ │ ├── OpenMesh │ │ │ ├── ACGMakefile │ │ │ ├── ACGMakefile.proj │ │ │ ├── Apps │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimating │ │ │ │ │ ├── CmdOption.hh │ │ │ │ │ ├── DecimaterGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ │ ├── commandlineDecimater │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ │ ├── decimater.cc │ │ │ │ │ └── decimaterviewer.cc │ │ │ │ ├── Dualizer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── dualizer.cc │ │ │ │ ├── ProgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ │ └── progviewer.cc │ │ │ │ ├── QtViewer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── QtViewer.pro │ │ │ │ │ └── meshviewer.cc │ │ │ │ ├── Smoothing │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Smoothing.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Subdivider │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ │ ├── SubdividerGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ │ ├── qtsubdivider.cc │ │ │ │ │ └── subdivider.cc │ │ │ │ ├── Unsupported │ │ │ │ │ ├── IvViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ │ └── ivviewer.cc │ │ │ │ │ ├── OsgViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ │ └── osgviewer.cc │ │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ │ └── Server │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ │ └── Streaming │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ │ ├── VDProgMesh │ │ │ │ │ ├── Analyzer │ │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ │ ├── Synthesizer │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ │ └── mkbalancedpm │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ │ └── mkbalancedpm.pro │ │ │ │ └── mconvert │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ │ ├── mconvert.cc │ │ │ │ │ └── mconvert.pro │ │ │ ├── Core │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Core.pro │ │ │ │ ├── Geometry │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Config.hh │ │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ │ ├── MathDefs.hh │ │ │ │ │ ├── NormalConeT.cc │ │ │ │ │ ├── NormalConeT.hh │ │ │ │ │ ├── Plane3d.hh │ │ │ │ │ ├── QuadricT.hh │ │ │ │ │ ├── VectorT.hh │ │ │ │ │ └── VectorT_inc.hh │ │ │ │ ├── IO │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BinaryHelper.cc │ │ │ │ │ ├── BinaryHelper.hh │ │ │ │ │ ├── IOInstances.hh │ │ │ │ │ ├── IOManager.cc │ │ │ │ │ ├── IOManager.hh │ │ │ │ │ ├── MeshIO.hh │ │ │ │ │ ├── OFFFormat.hh │ │ │ │ │ ├── OMFormat.cc │ │ │ │ │ ├── OMFormat.hh │ │ │ │ │ ├── OMFormatT.cc │ │ │ │ │ ├── Options.hh │ │ │ │ │ ├── SR_binary.hh │ │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ │ ├── SR_rbo.hh │ │ │ │ │ ├── SR_store.hh │ │ │ │ │ ├── SR_types.hh │ │ │ │ │ ├── StoreRestore.hh │ │ │ │ │ ├── exporter │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ │ └── ExporterT.hh │ │ │ │ │ ├── importer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ │ └── ImporterT.hh │ │ │ │ │ ├── reader │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ │ └── STLReader.hh │ │ │ │ │ └── writer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ │ ├── STLWriter.hh │ │ │ │ │ │ ├── VTKWriter.cc │ │ │ │ │ │ └── VTKWriter.hh │ │ │ │ ├── Mesh │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ArrayItems.hh │ │ │ │ │ ├── ArrayKernel.cc │ │ │ │ │ ├── ArrayKernel.hh │ │ │ │ │ ├── ArrayKernelT.cc │ │ │ │ │ ├── AttribKernelT.hh │ │ │ │ │ ├── Attributes.hh │ │ │ │ │ ├── BaseKernel.cc │ │ │ │ │ ├── BaseKernel.hh │ │ │ │ │ ├── BaseMesh.hh │ │ │ │ │ ├── Casts.hh │ │ │ │ │ ├── CirculatorsT.hh │ │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ │ ├── Handles.hh │ │ │ │ │ ├── IteratorsT.hh │ │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ │ ├── PolyMeshT.cc │ │ │ │ │ ├── PolyMeshT.hh │ │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ │ ├── Status.hh │ │ │ │ │ ├── Traits.hh │ │ │ │ │ ├── TriConnectivity.cc │ │ │ │ │ ├── TriConnectivity.hh │ │ │ │ │ ├── TriMeshT.cc │ │ │ │ │ ├── TriMeshT.hh │ │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ │ └── gen │ │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ │ ├── footer.hh │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ │ └── iterators_template.hh │ │ │ │ ├── System │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── OpenMeshDLLMacros.hh │ │ │ │ │ ├── compiler.hh │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config.hh │ │ │ │ │ ├── mostream.hh │ │ │ │ │ ├── omstream.cc │ │ │ │ │ └── omstream.hh │ │ │ │ ├── Templates │ │ │ │ │ ├── newClass.cc │ │ │ │ │ ├── newClass.hh │ │ │ │ │ ├── newClass.sh │ │ │ │ │ ├── newClassT.cc │ │ │ │ │ ├── newClassT.hh │ │ │ │ │ └── newClassT.sh │ │ │ │ ├── Utils │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ │ ├── BaseProperty.cc │ │ │ │ │ ├── BaseProperty.hh │ │ │ │ │ ├── Endian.cc │ │ │ │ │ ├── Endian.hh │ │ │ │ │ ├── GenProg.hh │ │ │ │ │ ├── Noncopyable.hh │ │ │ │ │ ├── Property.hh │ │ │ │ │ ├── PropertyContainer.hh │ │ │ │ │ ├── PropertyManager.hh │ │ │ │ │ ├── RandomNumberGenerator.cc │ │ │ │ │ ├── RandomNumberGenerator.hh │ │ │ │ │ ├── SingletonT.cc │ │ │ │ │ ├── SingletonT.hh │ │ │ │ │ ├── color_cast.hh │ │ │ │ │ ├── vector_cast.hh │ │ │ │ │ └── vector_traits.hh │ │ │ │ └── VS2008Core.vcproj │ │ │ ├── Examples │ │ │ │ ├── Examples.pro │ │ │ │ ├── Tutorial01 │ │ │ │ │ ├── Tutorial01.pro │ │ │ │ │ └── cube.cc │ │ │ │ ├── Tutorial02 │ │ │ │ │ ├── Tutorial02.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial03 │ │ │ │ │ ├── Tutorial03.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial04 │ │ │ │ │ ├── Tutorial04.pro │ │ │ │ │ ├── smooth.cc │ │ │ │ │ └── smooth_algo.hh │ │ │ │ ├── Tutorial05 │ │ │ │ │ ├── Tutorial05.pro │ │ │ │ │ └── properties.cc │ │ │ │ ├── Tutorial06 │ │ │ │ │ ├── Tutorial06.pro │ │ │ │ │ └── attributes.cc │ │ │ │ ├── Tutorial07 │ │ │ │ │ ├── Tutorial07.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial08 │ │ │ │ │ ├── Tutorial08.pro │ │ │ │ │ └── delete_geometry.cc │ │ │ │ ├── Tutorial09 │ │ │ │ │ ├── Tutorial09.pro │ │ │ │ │ └── io_options.cc │ │ │ │ └── Tutorial10 │ │ │ │ │ ├── Tutorial10.pro │ │ │ │ │ ├── fill_props.hh │ │ │ │ │ ├── generate_cube.hh │ │ │ │ │ ├── int2roman.cc │ │ │ │ │ ├── int2roman.hh │ │ │ │ │ ├── persistence.cc │ │ │ │ │ └── stats.hh │ │ │ └── Tools │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimater │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseDecimaterT.cc │ │ │ │ ├── BaseDecimaterT.hh │ │ │ │ ├── CollapseInfoT.hh │ │ │ │ ├── DecimaterT.cc │ │ │ │ ├── DecimaterT.hh │ │ │ │ ├── McDecimaterT.cc │ │ │ │ ├── McDecimaterT.hh │ │ │ │ ├── MixedDecimaterT.cc │ │ │ │ ├── MixedDecimaterT.hh │ │ │ │ ├── ModAspectRatioT.cc │ │ │ │ ├── ModAspectRatioT.hh │ │ │ │ ├── ModBaseT.hh │ │ │ │ ├── ModEdgeLengthT.cc │ │ │ │ ├── ModEdgeLengthT.hh │ │ │ │ ├── ModHausdorffT.cc │ │ │ │ ├── ModHausdorffT.hh │ │ │ │ ├── ModIndependentSetsT.hh │ │ │ │ ├── ModNormalDeviationT.hh │ │ │ │ ├── ModNormalFlippingT.hh │ │ │ │ ├── ModProgMeshT.cc │ │ │ │ ├── ModProgMeshT.hh │ │ │ │ ├── ModQuadricT.cc │ │ │ │ ├── ModQuadricT.hh │ │ │ │ └── ModRoundnessT.hh │ │ │ │ ├── Dualizer │ │ │ │ └── meshDualT.hh │ │ │ │ ├── Kernel_OSG │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayKernelT.hh │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── PropertyKernel.hh │ │ │ │ ├── PropertyT.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ │ ├── VectorAdapter.hh │ │ │ │ ├── bindT.hh │ │ │ │ └── color_cast.hh │ │ │ │ ├── Smoother │ │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ │ ├── LaplaceSmootherT.cc │ │ │ │ ├── LaplaceSmootherT.hh │ │ │ │ ├── SmootherT.cc │ │ │ │ ├── SmootherT.hh │ │ │ │ └── smooth_mesh.hh │ │ │ │ ├── Subdivider │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Adaptive │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ └── Composite │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ │ └── Traits.hh │ │ │ │ └── Uniform │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CatmullClarkT.cc │ │ │ │ │ ├── CatmullClarkT.hh │ │ │ │ │ ├── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ └── CompositeTraits.hh │ │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ │ ├── LongestEdgeT.hh │ │ │ │ │ ├── LoopT.hh │ │ │ │ │ ├── ModifiedButterFlyT.hh │ │ │ │ │ ├── Sqrt3InterpolatingSubdividerLabsikGreinerT.hh │ │ │ │ │ ├── Sqrt3T.hh │ │ │ │ │ └── SubdividerT.hh │ │ │ │ ├── Tools.pro │ │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── GLConstAsString.hh │ │ │ │ ├── Gnuplot.cc │ │ │ │ ├── Gnuplot.hh │ │ │ │ ├── HeapT.hh │ │ │ │ ├── MeshCheckerT.cc │ │ │ │ ├── MeshCheckerT.hh │ │ │ │ ├── NumLimitsT.hh │ │ │ │ ├── StripifierT.cc │ │ │ │ ├── StripifierT.hh │ │ │ │ ├── TestingFramework.hh │ │ │ │ ├── Timer.cc │ │ │ │ ├── Timer.hh │ │ │ │ ├── conio.cc │ │ │ │ ├── conio.hh │ │ │ │ ├── getopt.c │ │ │ │ └── getopt.h │ │ │ │ ├── VDPM │ │ │ │ ├── ACGMakefile │ │ │ │ ├── MeshTraits.hh │ │ │ │ ├── StreamingDef.hh │ │ │ │ ├── VFront.cc │ │ │ │ ├── VFront.hh │ │ │ │ ├── VHierarchy.cc │ │ │ │ ├── VHierarchy.hh │ │ │ │ ├── VHierarchyNode.hh │ │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ │ ├── VHierarchyWindow.cc │ │ │ │ ├── VHierarchyWindow.hh │ │ │ │ ├── ViewingParameters.cc │ │ │ │ ├── ViewingParameters.hh │ │ │ │ └── xpm │ │ │ │ │ ├── fileopen.xpm │ │ │ │ │ ├── fileprint.xpm │ │ │ │ │ └── filesave.xpm │ │ │ │ └── VS2008Tools.vcproj │ │ └── Unittests │ │ │ ├── CMakeLists.txt │ │ │ ├── TestFiles │ │ │ ├── cube-minimal-normals.ply │ │ │ ├── cube-minimal-texCoords.obj │ │ │ ├── cube-minimal-texCoords.om │ │ │ ├── cube-minimal-texCoords.ply │ │ │ ├── cube-minimal-vertex-colors-after-vertex-definition.obj │ │ │ ├── cube-minimal-vertex-colors-as-vc-lines.obj │ │ │ ├── cube-minimal-vertexColors.om │ │ │ ├── cube-minimal-vertexColors.ply │ │ │ ├── cube-minimal.obj │ │ │ ├── cube-minimal.om │ │ │ ├── cube-minimal.ply │ │ │ ├── cube1.off │ │ │ ├── cube1.stl │ │ │ ├── cube1Binary.stl │ │ │ ├── cube1_customProps.om │ │ │ ├── meshlab.ply │ │ │ ├── pointCloudBadEncoding.ply │ │ │ ├── pointCloudGoodEncoding.ply │ │ │ ├── square_material.mtl │ │ │ └── square_material.obj │ │ │ ├── fill_props.hh │ │ │ ├── generate_cube.hh │ │ │ ├── int2roman.hh │ │ │ ├── unittests.cc │ │ │ ├── unittests_add_face.cc │ │ │ ├── unittests_boundary.cc │ │ │ ├── unittests_common.hh │ │ │ ├── unittests_decimater.cc │ │ │ ├── unittests_delete_face.cc │ │ │ ├── unittests_faceless_mesh.cc │ │ │ ├── unittests_mc_decimater.cc │ │ │ ├── unittests_mesh_cast.cc │ │ │ ├── unittests_mesh_dual.cc │ │ │ ├── unittests_mixed_decimater.cc │ │ │ ├── unittests_property.cc │ │ │ ├── unittests_randomNumberGenerator.cc │ │ │ ├── unittests_read_write_OBJ.cc │ │ │ ├── unittests_read_write_OFF.cc │ │ │ ├── unittests_read_write_OM.cc │ │ │ ├── unittests_read_write_PLY.cc │ │ │ ├── unittests_read_write_STL.cc │ │ │ ├── unittests_split_copy.cc │ │ │ ├── unittests_stripifier.cc │ │ │ ├── unittests_subdivider_adaptive.cc │ │ │ ├── unittests_subdivider_uniform.cc │ │ │ ├── unittests_trimesh_circulator_current_halfedge_handle_replacement.cc │ │ │ ├── unittests_trimesh_circulator_face_edge.cc │ │ │ ├── unittests_trimesh_circulator_face_face.cc │ │ │ ├── unittests_trimesh_circulator_face_halfedge.cc │ │ │ ├── unittests_trimesh_circulator_face_vertex.cc │ │ │ ├── unittests_trimesh_circulator_halfedge_loop.cc │ │ │ ├── unittests_trimesh_circulator_vertex_edge.cc │ │ │ ├── unittests_trimesh_circulator_vertex_face.cc │ │ │ ├── unittests_trimesh_circulator_vertex_ihalfedge.cc │ │ │ ├── unittests_trimesh_circulator_vertex_ohalfedge.cc │ │ │ ├── unittests_trimesh_circulator_vertex_vertex.cc │ │ │ ├── unittests_trimesh_collapse.cc │ │ │ ├── unittests_trimesh_garbage_collection.cc │ │ │ ├── unittests_trimesh_iterators.cc │ │ │ ├── unittests_trimesh_normal_calculations.cc │ │ │ ├── unittests_trimesh_others.cc │ │ │ ├── unittests_tutorials.cc │ │ │ └── unittests_vector_type.cc │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh ├── OpenMesh-3.2 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Concepts │ │ │ ├── MeshItems.hh │ │ │ └── MeshKernel.hh │ │ ├── Examples │ │ │ ├── BaseExporter.hh │ │ │ ├── BaseImporter.hh │ │ │ ├── BaseReader.hh │ │ │ ├── adasub.cc │ │ │ ├── build-trimesh.cc │ │ │ ├── circulator_functions.cc │ │ │ ├── circulators.cc │ │ │ ├── decimater.cc │ │ │ ├── draw_normals.cc │ │ │ ├── iterators.cc │ │ │ ├── mesh_io.cc │ │ │ ├── mymesh.cc │ │ │ ├── nav_code1.cc │ │ │ ├── nav_code2.cc │ │ │ ├── nav_code3.cc │ │ │ ├── nav_code4.cc │ │ │ ├── nav_code4a.cc │ │ │ ├── nav_code_to_from.cc │ │ │ ├── traits0.cc │ │ │ ├── traits1.cc │ │ │ ├── traits2.cc │ │ │ ├── traits3.cc │ │ │ ├── traits4.cc │ │ │ └── traits5.cc │ │ ├── Tutorial │ │ │ ├── 01-build_cube │ │ │ │ ├── ACGMakefile │ │ │ │ └── build_cube.cc │ │ │ ├── 02-iterators │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 03-properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 04-stl_algorithms │ │ │ │ ├── ACGMakefile │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── 05-std_properties │ │ │ │ ├── ACGMakefile │ │ │ │ └── properties.cc │ │ │ ├── 06-attributes │ │ │ │ ├── ACGMakefile │ │ │ │ └── attributes.cc │ │ │ ├── 07-traits │ │ │ │ ├── ACGMakefile │ │ │ │ └── smooth.cc │ │ │ ├── 07b-delete_geometry │ │ │ │ └── delete_geometry.cc │ │ │ ├── 08-io_options │ │ │ │ ├── ACGMakefile │ │ │ │ └── io_options.cc │ │ │ ├── 09-persistence │ │ │ │ ├── ACGMakefile │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ │ ├── ACGMakefile │ │ │ └── CMakeLists.txt │ │ ├── changelog.docu │ │ ├── decimater.docu │ │ ├── doxy.config.in │ │ ├── html │ │ │ ├── acg_footer.html │ │ │ └── acg_icon.gif │ │ ├── images │ │ │ ├── class-hierarchy.png │ │ │ ├── class-hierarchy2.png │ │ │ ├── collapse_info.png │ │ │ ├── diagrams.sxi │ │ │ ├── halfedge_structure.gif │ │ │ ├── halfedge_structure2.png │ │ │ ├── halfedge_structure3.png │ │ │ ├── inheritance-simple.png │ │ │ ├── inheritance-simple.scaled.png │ │ │ ├── inheritance.fig │ │ │ ├── inheritance.gif │ │ │ ├── iomanager.gif │ │ │ ├── iomanager.png │ │ │ ├── mesh.collapse.png │ │ │ ├── mesh.flip.png │ │ │ ├── mesh.inner.png │ │ │ ├── mesh.inout.png │ │ │ ├── mesh.normal.png │ │ │ ├── mesh.opp.png │ │ │ ├── mesh.outer.png │ │ │ ├── mesh.to.from.png │ │ │ ├── om-format.png │ │ │ └── src │ │ │ │ ├── iomanager.tex │ │ │ │ ├── mesh.collapse.tex │ │ │ │ ├── mesh.flip.tex │ │ │ │ ├── mesh.inner.tex │ │ │ │ ├── mesh.io.tex │ │ │ │ ├── mesh.normal.tex │ │ │ │ ├── mesh.opp.tex │ │ │ │ ├── mesh.outer.tex │ │ │ │ └── mesh.to.from.tex │ │ ├── mainpage.docu │ │ ├── mesh.docu │ │ ├── misc.docu │ │ ├── namespaces.docu │ │ ├── navigation.docu │ │ ├── operations.docu │ │ ├── subdivider.docu │ │ ├── tools.docu │ │ ├── tutorial_01.docu │ │ ├── tutorial_02.docu │ │ ├── tutorial_03.docu │ │ ├── tutorial_04.docu │ │ ├── tutorial_05.docu │ │ ├── tutorial_06.docu │ │ ├── tutorial_07.docu │ │ ├── tutorial_07b.docu │ │ ├── tutorial_08.docu │ │ ├── tutorial_09.docu │ │ ├── tutorial_build.docu │ │ ├── tutorial_main.docu │ │ └── vdpm.docu │ ├── LICENSE │ │ ├── COPYING │ │ ├── COPYING.EXCEPTIONS │ │ ├── COPYING.LESSER │ │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── cmake │ │ ├── ACGCommon.cmake │ │ ├── ACGCompiler.cmake │ │ ├── ACGDoxygen.cmake │ │ ├── ACGOutput.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGLUT.cmake │ │ ├── FindGoogleTest.cmake │ │ ├── FindOpenMP.cmake │ │ ├── FindOpenMesh.cmake │ │ ├── OpenMeshPackage.cmake │ │ ├── fixbundle.cmake.in │ │ └── fixbundle.cmake.win.in │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── qmake │ │ ├── all.include │ │ ├── architecture.include │ │ ├── compiler.include │ │ ├── functions.include │ │ ├── packages │ │ │ ├── packages.Darwin │ │ │ ├── packages.Linux │ │ │ └── packages.Windows │ │ └── targets.include │ ├── release.howto │ ├── src │ │ ├── OpenMesh │ │ │ ├── ACGMakefile │ │ │ ├── ACGMakefile.proj │ │ │ ├── Apps │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimating │ │ │ │ │ ├── CmdOption.hh │ │ │ │ │ ├── DecimaterGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ │ ├── commandlineDecimater │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ │ ├── decimater.cc │ │ │ │ │ └── decimaterviewer.cc │ │ │ │ ├── Dualizer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── dualizer.cc │ │ │ │ ├── ProgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ │ └── progviewer.cc │ │ │ │ ├── QtViewer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── QtViewer.pro │ │ │ │ │ └── meshviewer.cc │ │ │ │ ├── Smoothing │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Smoothing.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Subdivider │ │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ │ ├── SubdividerGui │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ │ ├── qtsubdivider.cc │ │ │ │ │ └── subdivider.cc │ │ │ │ ├── Unsupported │ │ │ │ │ ├── IvViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ │ └── ivviewer.cc │ │ │ │ │ ├── OsgViewer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ │ └── osgviewer.cc │ │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ │ └── Server │ │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ │ └── Streaming │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ │ ├── VDProgMesh │ │ │ │ │ ├── Analyzer │ │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ │ ├── Synthesizer │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ │ └── mkbalancedpm │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ │ └── mkbalancedpm.pro │ │ │ │ └── mconvert │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ │ ├── mconvert.cc │ │ │ │ │ └── mconvert.pro │ │ │ ├── Core │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Core.pro │ │ │ │ ├── Geometry │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Config.hh │ │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ │ ├── MathDefs.hh │ │ │ │ │ ├── NormalConeT.cc │ │ │ │ │ ├── NormalConeT.hh │ │ │ │ │ ├── Plane3d.hh │ │ │ │ │ ├── QuadricT.hh │ │ │ │ │ ├── VectorT.hh │ │ │ │ │ └── VectorT_inc.hh │ │ │ │ ├── IO │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BinaryHelper.cc │ │ │ │ │ ├── BinaryHelper.hh │ │ │ │ │ ├── IOInstances.hh │ │ │ │ │ ├── IOManager.cc │ │ │ │ │ ├── IOManager.hh │ │ │ │ │ ├── MeshIO.hh │ │ │ │ │ ├── OFFFormat.hh │ │ │ │ │ ├── OMFormat.cc │ │ │ │ │ ├── OMFormat.hh │ │ │ │ │ ├── OMFormatT.cc │ │ │ │ │ ├── Options.hh │ │ │ │ │ ├── SR_binary.hh │ │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ │ ├── SR_rbo.hh │ │ │ │ │ ├── SR_store.hh │ │ │ │ │ ├── SR_types.hh │ │ │ │ │ ├── StoreRestore.hh │ │ │ │ │ ├── exporter │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ │ └── ExporterT.hh │ │ │ │ │ ├── importer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ │ └── ImporterT.hh │ │ │ │ │ ├── reader │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ │ └── STLReader.hh │ │ │ │ │ └── writer │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ │ ├── STLWriter.hh │ │ │ │ │ │ ├── VTKWriter.cc │ │ │ │ │ │ └── VTKWriter.hh │ │ │ │ ├── Mesh │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ArrayItems.hh │ │ │ │ │ ├── ArrayKernel.cc │ │ │ │ │ ├── ArrayKernel.hh │ │ │ │ │ ├── ArrayKernelT.cc │ │ │ │ │ ├── AttribKernelT.hh │ │ │ │ │ ├── Attributes.hh │ │ │ │ │ ├── BaseKernel.cc │ │ │ │ │ ├── BaseKernel.hh │ │ │ │ │ ├── BaseMesh.hh │ │ │ │ │ ├── Casts.hh │ │ │ │ │ ├── CirculatorsT.hh │ │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ │ ├── Handles.hh │ │ │ │ │ ├── IteratorsT.hh │ │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ │ ├── PolyMeshT.cc │ │ │ │ │ ├── PolyMeshT.hh │ │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ │ ├── Status.hh │ │ │ │ │ ├── Traits.hh │ │ │ │ │ ├── TriConnectivity.cc │ │ │ │ │ ├── TriConnectivity.hh │ │ │ │ │ ├── TriMeshT.cc │ │ │ │ │ ├── TriMeshT.hh │ │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ │ └── gen │ │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ │ ├── footer.hh │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ │ └── iterators_template.hh │ │ │ │ ├── System │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── OpenMeshDLLMacros.hh │ │ │ │ │ ├── compiler.hh │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config.hh │ │ │ │ │ ├── mostream.hh │ │ │ │ │ ├── omstream.cc │ │ │ │ │ └── omstream.hh │ │ │ │ ├── Templates │ │ │ │ │ ├── newClass.cc │ │ │ │ │ ├── newClass.hh │ │ │ │ │ ├── newClass.sh │ │ │ │ │ ├── newClassT.cc │ │ │ │ │ ├── newClassT.hh │ │ │ │ │ └── newClassT.sh │ │ │ │ ├── Utils │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ │ ├── BaseProperty.cc │ │ │ │ │ ├── BaseProperty.hh │ │ │ │ │ ├── Endian.cc │ │ │ │ │ ├── Endian.hh │ │ │ │ │ ├── GenProg.hh │ │ │ │ │ ├── Noncopyable.hh │ │ │ │ │ ├── Property.hh │ │ │ │ │ ├── PropertyContainer.hh │ │ │ │ │ ├── PropertyManager.hh │ │ │ │ │ ├── RandomNumberGenerator.cc │ │ │ │ │ ├── RandomNumberGenerator.hh │ │ │ │ │ ├── SingletonT.cc │ │ │ │ │ ├── SingletonT.hh │ │ │ │ │ ├── color_cast.hh │ │ │ │ │ ├── vector_cast.hh │ │ │ │ │ └── vector_traits.hh │ │ │ │ └── VS2008Core.vcproj │ │ │ ├── Examples │ │ │ │ ├── Examples.pro │ │ │ │ ├── Tutorial01 │ │ │ │ │ ├── Tutorial01.pro │ │ │ │ │ └── cube.cc │ │ │ │ ├── Tutorial02 │ │ │ │ │ ├── Tutorial02.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial03 │ │ │ │ │ ├── Tutorial03.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial04 │ │ │ │ │ ├── Tutorial04.pro │ │ │ │ │ ├── smooth.cc │ │ │ │ │ └── smooth_algo.hh │ │ │ │ ├── Tutorial05 │ │ │ │ │ ├── Tutorial05.pro │ │ │ │ │ └── properties.cc │ │ │ │ ├── Tutorial06 │ │ │ │ │ ├── Tutorial06.pro │ │ │ │ │ └── attributes.cc │ │ │ │ ├── Tutorial07 │ │ │ │ │ ├── Tutorial07.pro │ │ │ │ │ └── smooth.cc │ │ │ │ ├── Tutorial08 │ │ │ │ │ ├── Tutorial08.pro │ │ │ │ │ └── delete_geometry.cc │ │ │ │ ├── Tutorial09 │ │ │ │ │ ├── Tutorial09.pro │ │ │ │ │ └── io_options.cc │ │ │ │ └── Tutorial10 │ │ │ │ │ ├── Tutorial10.pro │ │ │ │ │ ├── fill_props.hh │ │ │ │ │ ├── generate_cube.hh │ │ │ │ │ ├── int2roman.cc │ │ │ │ │ ├── int2roman.hh │ │ │ │ │ ├── persistence.cc │ │ │ │ │ └── stats.hh │ │ │ └── Tools │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Decimater │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseDecimaterT.cc │ │ │ │ ├── BaseDecimaterT.hh │ │ │ │ ├── CollapseInfoT.hh │ │ │ │ ├── DecimaterT.cc │ │ │ │ ├── DecimaterT.hh │ │ │ │ ├── McDecimaterT.cc │ │ │ │ ├── McDecimaterT.hh │ │ │ │ ├── MixedDecimaterT.cc │ │ │ │ ├── MixedDecimaterT.hh │ │ │ │ ├── ModAspectRatioT.cc │ │ │ │ ├── ModAspectRatioT.hh │ │ │ │ ├── ModBaseT.hh │ │ │ │ ├── ModEdgeLengthT.cc │ │ │ │ ├── ModEdgeLengthT.hh │ │ │ │ ├── ModHausdorffT.cc │ │ │ │ ├── ModHausdorffT.hh │ │ │ │ ├── ModIndependentSetsT.hh │ │ │ │ ├── ModNormalDeviationT.hh │ │ │ │ ├── ModNormalFlippingT.hh │ │ │ │ ├── ModProgMeshT.cc │ │ │ │ ├── ModProgMeshT.hh │ │ │ │ ├── ModQuadricT.cc │ │ │ │ ├── ModQuadricT.hh │ │ │ │ └── ModRoundnessT.hh │ │ │ │ ├── Dualizer │ │ │ │ └── meshDualT.hh │ │ │ │ ├── Kernel_OSG │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayKernelT.hh │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── PropertyKernel.hh │ │ │ │ ├── PropertyT.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ │ ├── VectorAdapter.hh │ │ │ │ ├── bindT.hh │ │ │ │ └── color_cast.hh │ │ │ │ ├── Smoother │ │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ │ ├── LaplaceSmootherT.cc │ │ │ │ ├── LaplaceSmootherT.hh │ │ │ │ ├── SmootherT.cc │ │ │ │ ├── SmootherT.hh │ │ │ │ └── smooth_mesh.hh │ │ │ │ ├── Subdivider │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Adaptive │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ └── Composite │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ │ └── Traits.hh │ │ │ │ └── Uniform │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CatmullClarkT.cc │ │ │ │ │ ├── CatmullClarkT.hh │ │ │ │ │ ├── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ └── CompositeTraits.hh │ │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ │ ├── LongestEdgeT.hh │ │ │ │ │ ├── LoopT.hh │ │ │ │ │ ├── ModifiedButterFlyT.hh │ │ │ │ │ ├── Sqrt3InterpolatingSubdividerLabsikGreinerT.hh │ │ │ │ │ ├── Sqrt3T.hh │ │ │ │ │ └── SubdividerT.hh │ │ │ │ ├── Tools.pro │ │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── GLConstAsString.hh │ │ │ │ ├── Gnuplot.cc │ │ │ │ ├── Gnuplot.hh │ │ │ │ ├── HeapT.hh │ │ │ │ ├── MeshCheckerT.cc │ │ │ │ ├── MeshCheckerT.hh │ │ │ │ ├── NumLimitsT.hh │ │ │ │ ├── StripifierT.cc │ │ │ │ ├── StripifierT.hh │ │ │ │ ├── TestingFramework.hh │ │ │ │ ├── Timer.cc │ │ │ │ ├── Timer.hh │ │ │ │ ├── conio.cc │ │ │ │ ├── conio.hh │ │ │ │ ├── getopt.c │ │ │ │ └── getopt.h │ │ │ │ ├── VDPM │ │ │ │ ├── ACGMakefile │ │ │ │ ├── MeshTraits.hh │ │ │ │ ├── StreamingDef.hh │ │ │ │ ├── VFront.cc │ │ │ │ ├── VFront.hh │ │ │ │ ├── VHierarchy.cc │ │ │ │ ├── VHierarchy.hh │ │ │ │ ├── VHierarchyNode.hh │ │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ │ ├── VHierarchyWindow.cc │ │ │ │ ├── VHierarchyWindow.hh │ │ │ │ ├── ViewingParameters.cc │ │ │ │ ├── ViewingParameters.hh │ │ │ │ └── xpm │ │ │ │ │ ├── fileopen.xpm │ │ │ │ │ ├── fileprint.xpm │ │ │ │ │ └── filesave.xpm │ │ │ │ └── VS2008Tools.vcproj │ │ └── Unittests │ │ │ ├── CMakeLists.txt │ │ │ ├── TestFiles │ │ │ ├── cube-minimal-normals.ply │ │ │ ├── cube-minimal-texCoords.obj │ │ │ ├── cube-minimal-texCoords.om │ │ │ ├── cube-minimal-texCoords.ply │ │ │ ├── cube-minimal-vertex-colors-after-vertex-definition.obj │ │ │ ├── cube-minimal-vertex-colors-as-vc-lines.obj │ │ │ ├── cube-minimal-vertexColors.om │ │ │ ├── cube-minimal-vertexColors.ply │ │ │ ├── cube-minimal.obj │ │ │ ├── cube-minimal.om │ │ │ ├── cube-minimal.ply │ │ │ ├── cube1.off │ │ │ ├── cube1.stl │ │ │ ├── cube1Binary.stl │ │ │ ├── cube1_customProps.om │ │ │ ├── meshlab.ply │ │ │ ├── pointCloudBadEncoding.ply │ │ │ ├── pointCloudGoodEncoding.ply │ │ │ ├── square_material.mtl │ │ │ ├── square_material.obj │ │ │ ├── square_material_texture.mtl │ │ │ └── square_material_texture.obj │ │ │ ├── fill_props.hh │ │ │ ├── generate_cube.hh │ │ │ ├── int2roman.hh │ │ │ ├── unittests.cc │ │ │ ├── unittests_add_face.cc │ │ │ ├── unittests_boundary.cc │ │ │ ├── unittests_common.hh │ │ │ ├── unittests_decimater.cc │ │ │ ├── unittests_delete_face.cc │ │ │ ├── unittests_faceless_mesh.cc │ │ │ ├── unittests_mc_decimater.cc │ │ │ ├── unittests_mesh_cast.cc │ │ │ ├── unittests_mesh_dual.cc │ │ │ ├── unittests_mixed_decimater.cc │ │ │ ├── unittests_property.cc │ │ │ ├── unittests_randomNumberGenerator.cc │ │ │ ├── unittests_read_write_OBJ.cc │ │ │ ├── unittests_read_write_OFF.cc │ │ │ ├── unittests_read_write_OM.cc │ │ │ ├── unittests_read_write_PLY.cc │ │ │ ├── unittests_read_write_STL.cc │ │ │ ├── unittests_split_copy.cc │ │ │ ├── unittests_stripifier.cc │ │ │ ├── unittests_subdivider_adaptive.cc │ │ │ ├── unittests_subdivider_uniform.cc │ │ │ ├── unittests_trimesh_circulator_current_halfedge_handle_replacement.cc │ │ │ ├── unittests_trimesh_circulator_face_edge.cc │ │ │ ├── unittests_trimesh_circulator_face_face.cc │ │ │ ├── unittests_trimesh_circulator_face_halfedge.cc │ │ │ ├── unittests_trimesh_circulator_face_vertex.cc │ │ │ ├── unittests_trimesh_circulator_halfedge_loop.cc │ │ │ ├── unittests_trimesh_circulator_vertex_edge.cc │ │ │ ├── unittests_trimesh_circulator_vertex_face.cc │ │ │ ├── unittests_trimesh_circulator_vertex_ihalfedge.cc │ │ │ ├── unittests_trimesh_circulator_vertex_ohalfedge.cc │ │ │ ├── unittests_trimesh_circulator_vertex_vertex.cc │ │ │ ├── unittests_trimesh_collapse.cc │ │ │ ├── unittests_trimesh_garbage_collection.cc │ │ │ ├── unittests_trimesh_iterators.cc │ │ │ ├── unittests_trimesh_normal_calculations.cc │ │ │ ├── unittests_trimesh_others.cc │ │ │ ├── unittests_tutorials.cc │ │ │ └── unittests_vector_type.cc │ └── templates │ │ ├── cc │ │ ├── cpp │ │ ├── h │ │ └── hh └── OpenMesh-3.3 │ ├── .qmake.cache │ ├── ACGMakefile │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doc │ ├── ACGMakefile │ ├── CMakeLists.txt │ ├── Concepts │ │ ├── MeshItems.hh │ │ └── MeshKernel.hh │ ├── Examples │ │ ├── BaseExporter.hh │ │ ├── BaseImporter.hh │ │ ├── BaseReader.hh │ │ ├── adasub.cc │ │ ├── build-trimesh.cc │ │ ├── circulator_functions.cc │ │ ├── circulators.cc │ │ ├── decimater.cc │ │ ├── draw_normals.cc │ │ ├── iterators.cc │ │ ├── mesh_io.cc │ │ ├── mymesh.cc │ │ ├── nav_code1.cc │ │ ├── nav_code2.cc │ │ ├── nav_code3.cc │ │ ├── nav_code4.cc │ │ ├── nav_code4a.cc │ │ ├── nav_code_to_from.cc │ │ ├── python_tutorial.py │ │ ├── traits0.cc │ │ ├── traits1.cc │ │ ├── traits2.cc │ │ ├── traits3.cc │ │ ├── traits4.cc │ │ └── traits5.cc │ ├── Tutorial │ │ ├── 01-build_cube │ │ │ ├── ACGMakefile │ │ │ └── build_cube.cc │ │ ├── 02-iterators │ │ │ ├── ACGMakefile │ │ │ └── smooth.cc │ │ ├── 03-properties │ │ │ ├── ACGMakefile │ │ │ └── smooth.cc │ │ ├── 04-stl_algorithms │ │ │ ├── ACGMakefile │ │ │ ├── smooth.cc │ │ │ └── smooth_algo.hh │ │ ├── 05-std_properties │ │ │ ├── ACGMakefile │ │ │ └── properties.cc │ │ ├── 06-attributes │ │ │ ├── ACGMakefile │ │ │ └── attributes.cc │ │ ├── 07-traits │ │ │ ├── ACGMakefile │ │ │ └── smooth.cc │ │ ├── 07b-delete_geometry │ │ │ └── delete_geometry.cc │ │ ├── 08-io_options │ │ │ ├── ACGMakefile │ │ │ └── io_options.cc │ │ ├── 09-persistence │ │ │ ├── ACGMakefile │ │ │ ├── fill_props.hh │ │ │ ├── generate_cube.hh │ │ │ ├── int2roman.cc │ │ │ ├── int2roman.hh │ │ │ ├── persistence.cc │ │ │ └── stats.hh │ │ ├── ACGMakefile │ │ └── CMakeLists.txt │ ├── changelog.docu │ ├── decimater.docu │ ├── doxy.config.in │ ├── html │ │ ├── acg_footer.html │ │ └── acg_logo.png │ ├── images │ │ ├── acg_logo_small.png │ │ ├── class-hierarchy.png │ │ ├── class-hierarchy2.png │ │ ├── collapse_info.png │ │ ├── diagrams.sxi │ │ ├── halfedge_structure.gif │ │ ├── halfedge_structure2.png │ │ ├── halfedge_structure3.png │ │ ├── inheritance-simple.png │ │ ├── inheritance-simple.scaled.png │ │ ├── inheritance.fig │ │ ├── inheritance.gif │ │ ├── iomanager.gif │ │ ├── iomanager.png │ │ ├── mesh.collapse.png │ │ ├── mesh.flip.png │ │ ├── mesh.inner.png │ │ ├── mesh.inout.png │ │ ├── mesh.normal.png │ │ ├── mesh.opp.png │ │ ├── mesh.outer.png │ │ ├── mesh.to.from.png │ │ ├── om-format.png │ │ └── src │ │ │ ├── iomanager.tex │ │ │ ├── mesh.collapse.tex │ │ │ ├── mesh.flip.tex │ │ │ ├── mesh.inner.tex │ │ │ ├── mesh.io.tex │ │ │ ├── mesh.normal.tex │ │ │ ├── mesh.opp.tex │ │ │ ├── mesh.outer.tex │ │ │ └── mesh.to.from.tex │ ├── mainpage.docu │ ├── mesh.docu │ ├── misc.docu │ ├── namespaces.docu │ ├── navigation.docu │ ├── operations.docu │ ├── python_tutorial.docu │ ├── smoother.docu │ ├── subdivider.docu │ ├── tools.docu │ ├── tutorial_01.docu │ ├── tutorial_02.docu │ ├── tutorial_03.docu │ ├── tutorial_04.docu │ ├── tutorial_05.docu │ ├── tutorial_06.docu │ ├── tutorial_07.docu │ ├── tutorial_07b.docu │ ├── tutorial_08.docu │ ├── tutorial_09.docu │ ├── tutorial_build.docu │ ├── tutorial_main.docu │ └── vdpm.docu │ ├── LICENSE │ ├── COPYING │ ├── COPYING.EXCEPTIONS │ ├── COPYING.LESSER │ └── LICENSEHEADER │ ├── OpenMesh.pro │ ├── README │ ├── VERSION │ ├── cmake │ ├── ACGCommon.cmake │ ├── ACGCompiler.cmake │ ├── ACGDoxygen.cmake │ ├── ACGOutput.cmake │ ├── FindGLEW.cmake │ ├── FindGLUT.cmake │ ├── FindGoogleTest.cmake │ ├── FindOpenMP.cmake │ ├── FindOpenMesh.cmake │ ├── OpenMeshPackage.cmake │ ├── fixbundle.cmake.in │ └── fixbundle.cmake.win.in │ ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ └── rules │ ├── qmake │ ├── all.include │ ├── architecture.include │ ├── compiler.include │ ├── functions.include │ ├── packages │ │ ├── packages.Darwin │ │ ├── packages.Linux │ │ └── packages.Windows │ └── targets.include │ ├── release.howto │ ├── src │ ├── OpenMesh │ │ ├── ACGMakefile │ │ ├── ACGMakefile.proj │ │ ├── Apps │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimating │ │ │ │ ├── CmdOption.hh │ │ │ │ ├── DecimaterGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── DecimaterGui.pro │ │ │ │ ├── DecimaterViewerWidget.cc │ │ │ │ ├── DecimaterViewerWidget.hh │ │ │ │ ├── commandlineDecimater │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineDecimater.pro │ │ │ │ ├── decimater.cc │ │ │ │ └── decimaterviewer.cc │ │ │ ├── Dualizer │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── dualizer.cc │ │ │ ├── ProgViewer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ │ ├── ProgViewerWidget.cc │ │ │ │ ├── ProgViewerWidget.hh │ │ │ │ └── progviewer.cc │ │ │ ├── QtViewer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ ├── QtViewer.pro │ │ │ │ └── meshviewer.cc │ │ │ ├── Smoothing │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Smoothing.pro │ │ │ │ └── smooth.cc │ │ │ ├── Subdivider │ │ │ │ ├── MeshViewerWidget.hh │ │ │ │ ├── SubdivideWidget.cc │ │ │ │ ├── SubdivideWidget.hh │ │ │ │ ├── SubdividerGui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── SubdividerGui.pro │ │ │ │ ├── adaptive_subdivider.cc │ │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ │ ├── commandlineSubdivider │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── commandlineSubdivider.pro │ │ │ │ ├── qtsubdivider.cc │ │ │ │ └── subdivider.cc │ │ │ ├── Unsupported │ │ │ │ ├── IvViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ │ └── ivviewer.cc │ │ │ │ ├── OsgViewer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── README │ │ │ │ │ ├── meshviewer.cc │ │ │ │ │ └── osgviewer.cc │ │ │ │ ├── Streaming-qt4 │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ │ └── camera.cmr │ │ │ │ │ └── Server │ │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ │ ├── bunny.pm │ │ │ │ │ │ ├── bunny.spm │ │ │ │ │ │ └── rockerArm.pm │ │ │ │ └── Streaming │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── Client │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ │ └── Server │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ └── VDPMStreamingServer.hh │ │ │ ├── VDProgMesh │ │ │ │ ├── Analyzer │ │ │ │ │ ├── Analyzer.pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── vdpmanalyzer.cc │ │ │ │ ├── Synthesizer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Synthesizer.pro │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ │ └── vdpmsynthesizer.cc │ │ │ │ └── mkbalancedpm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ │ └── mkbalancedpm.pro │ │ │ └── mconvert │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── VS2008mconvert.vcproj │ │ │ │ ├── mconvert.cc │ │ │ │ └── mconvert.pro │ │ ├── Core │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Core.pro │ │ │ ├── Geometry │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Config.hh │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ ├── MathDefs.hh │ │ │ │ ├── NormalConeT.cc │ │ │ │ ├── NormalConeT.hh │ │ │ │ ├── Plane3d.hh │ │ │ │ ├── QuadricT.hh │ │ │ │ ├── VectorT.hh │ │ │ │ └── VectorT_inc.hh │ │ │ ├── IO │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BinaryHelper.cc │ │ │ │ ├── BinaryHelper.hh │ │ │ │ ├── IOInstances.hh │ │ │ │ ├── IOManager.cc │ │ │ │ ├── IOManager.hh │ │ │ │ ├── MeshIO.hh │ │ │ │ ├── OFFFormat.hh │ │ │ │ ├── OMFormat.cc │ │ │ │ ├── OMFormat.hh │ │ │ │ ├── OMFormatT.cc │ │ │ │ ├── Options.hh │ │ │ │ ├── SR_binary.hh │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ ├── SR_rbo.hh │ │ │ │ ├── SR_store.hh │ │ │ │ ├── SR_types.hh │ │ │ │ ├── StoreRestore.hh │ │ │ │ ├── exporter │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ └── ExporterT.hh │ │ │ │ ├── importer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ └── ImporterT.hh │ │ │ │ ├── reader │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ └── STLReader.hh │ │ │ │ └── writer │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ ├── STLWriter.hh │ │ │ │ │ ├── VTKWriter.cc │ │ │ │ │ └── VTKWriter.hh │ │ │ ├── Mesh │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ArrayItems.hh │ │ │ │ ├── ArrayKernel.cc │ │ │ │ ├── ArrayKernel.hh │ │ │ │ ├── ArrayKernelT.cc │ │ │ │ ├── AttribKernelT.hh │ │ │ │ ├── Attributes.hh │ │ │ │ ├── BaseKernel.cc │ │ │ │ ├── BaseKernel.hh │ │ │ │ ├── BaseMesh.hh │ │ │ │ ├── Casts.hh │ │ │ │ ├── CirculatorsT.hh │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ ├── Handles.hh │ │ │ │ ├── IteratorsT.hh │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ ├── PolyMeshT.cc │ │ │ │ ├── PolyMeshT.hh │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ ├── Status.hh │ │ │ │ ├── Traits.hh │ │ │ │ ├── TriConnectivity.cc │ │ │ │ ├── TriConnectivity.hh │ │ │ │ ├── TriMeshT.cc │ │ │ │ ├── TriMeshT.hh │ │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ │ └── gen │ │ │ │ │ ├── circulators_header.hh │ │ │ │ │ ├── circulators_template.hh │ │ │ │ │ ├── footer.hh │ │ │ │ │ ├── generate.sh │ │ │ │ │ ├── iterators_header.hh │ │ │ │ │ └── iterators_template.hh │ │ │ ├── System │ │ │ │ ├── ACGMakefile │ │ │ │ ├── OpenMeshDLLMacros.hh │ │ │ │ ├── compiler.hh │ │ │ │ ├── config.h │ │ │ │ ├── config.hh │ │ │ │ ├── mostream.hh │ │ │ │ ├── omstream.cc │ │ │ │ └── omstream.hh │ │ │ ├── Templates │ │ │ │ ├── newClass.cc │ │ │ │ ├── newClass.hh │ │ │ │ ├── newClass.sh │ │ │ │ ├── newClassT.cc │ │ │ │ ├── newClassT.hh │ │ │ │ └── newClassT.sh │ │ │ ├── Utils │ │ │ │ ├── ACGMakefile │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ ├── BaseProperty.cc │ │ │ │ ├── BaseProperty.hh │ │ │ │ ├── Endian.cc │ │ │ │ ├── Endian.hh │ │ │ │ ├── GenProg.hh │ │ │ │ ├── Noncopyable.hh │ │ │ │ ├── Property.hh │ │ │ │ ├── PropertyContainer.hh │ │ │ │ ├── PropertyManager.hh │ │ │ │ ├── RandomNumberGenerator.cc │ │ │ │ ├── RandomNumberGenerator.hh │ │ │ │ ├── SingletonT.cc │ │ │ │ ├── SingletonT.hh │ │ │ │ ├── color_cast.hh │ │ │ │ ├── vector_cast.hh │ │ │ │ └── vector_traits.hh │ │ │ └── VS2008Core.vcproj │ │ ├── Examples │ │ │ ├── Examples.pro │ │ │ ├── Tutorial01 │ │ │ │ ├── Tutorial01.pro │ │ │ │ └── cube.cc │ │ │ ├── Tutorial02 │ │ │ │ ├── Tutorial02.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial03 │ │ │ │ ├── Tutorial03.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial04 │ │ │ │ ├── Tutorial04.pro │ │ │ │ ├── smooth.cc │ │ │ │ └── smooth_algo.hh │ │ │ ├── Tutorial05 │ │ │ │ ├── Tutorial05.pro │ │ │ │ └── properties.cc │ │ │ ├── Tutorial06 │ │ │ │ ├── Tutorial06.pro │ │ │ │ └── attributes.cc │ │ │ ├── Tutorial07 │ │ │ │ ├── Tutorial07.pro │ │ │ │ └── smooth.cc │ │ │ ├── Tutorial08 │ │ │ │ ├── Tutorial08.pro │ │ │ │ └── delete_geometry.cc │ │ │ ├── Tutorial09 │ │ │ │ ├── Tutorial09.pro │ │ │ │ └── io_options.cc │ │ │ └── Tutorial10 │ │ │ │ ├── Tutorial10.pro │ │ │ │ ├── fill_props.hh │ │ │ │ ├── generate_cube.hh │ │ │ │ ├── int2roman.cc │ │ │ │ ├── int2roman.hh │ │ │ │ ├── persistence.cc │ │ │ │ └── stats.hh │ │ └── Tools │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Decimater │ │ │ ├── ACGMakefile │ │ │ ├── BaseDecimaterT.cc │ │ │ ├── BaseDecimaterT.hh │ │ │ ├── CollapseInfoT.hh │ │ │ ├── DecimaterT.cc │ │ │ ├── DecimaterT.hh │ │ │ ├── McDecimaterT.cc │ │ │ ├── McDecimaterT.hh │ │ │ ├── MixedDecimaterT.cc │ │ │ ├── MixedDecimaterT.hh │ │ │ ├── ModAspectRatioT.cc │ │ │ ├── ModAspectRatioT.hh │ │ │ ├── ModBaseT.hh │ │ │ ├── ModEdgeLengthT.cc │ │ │ ├── ModEdgeLengthT.hh │ │ │ ├── ModHausdorffT.cc │ │ │ ├── ModHausdorffT.hh │ │ │ ├── ModIndependentSetsT.hh │ │ │ ├── ModNormalDeviationT.hh │ │ │ ├── ModNormalFlippingT.hh │ │ │ ├── ModProgMeshT.cc │ │ │ ├── ModProgMeshT.hh │ │ │ ├── ModQuadricT.cc │ │ │ ├── ModQuadricT.hh │ │ │ ├── ModRoundnessT.hh │ │ │ ├── Observer.cc │ │ │ └── Observer.hh │ │ │ ├── Dualizer │ │ │ └── meshDualT.hh │ │ │ ├── Kernel_OSG │ │ │ ├── ACGMakefile │ │ │ ├── ArrayKernelT.hh │ │ │ ├── AttribKernelT.hh │ │ │ ├── PropertyKernel.hh │ │ │ ├── PropertyT.hh │ │ │ ├── Traits.hh │ │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ │ ├── VectorAdapter.hh │ │ │ ├── bindT.hh │ │ │ └── color_cast.hh │ │ │ ├── Smoother │ │ │ ├── JacobiLaplaceSmootherT.cc │ │ │ ├── JacobiLaplaceSmootherT.hh │ │ │ ├── LaplaceSmootherT.cc │ │ │ ├── LaplaceSmootherT.hh │ │ │ ├── SmootherT.cc │ │ │ ├── SmootherT.hh │ │ │ └── smooth_mesh.hh │ │ │ ├── Subdivider │ │ │ ├── ACGMakefile │ │ │ ├── Adaptive │ │ │ │ ├── ACGMakefile │ │ │ │ └── Composite │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── CompositeT.cc │ │ │ │ │ ├── CompositeT.hh │ │ │ │ │ ├── CompositeTraits.hh │ │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ │ ├── RulesT.cc │ │ │ │ │ ├── RulesT.hh │ │ │ │ │ └── Traits.hh │ │ │ └── Uniform │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CatmullClarkT.cc │ │ │ │ ├── CatmullClarkT.hh │ │ │ │ ├── Composite │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CompositeT.cc │ │ │ │ ├── CompositeT.hh │ │ │ │ └── CompositeTraits.hh │ │ │ │ ├── CompositeLoopT.hh │ │ │ │ ├── CompositeSqrt3T.hh │ │ │ │ ├── LongestEdgeT.hh │ │ │ │ ├── LoopT.hh │ │ │ │ ├── ModifiedButterFlyT.hh │ │ │ │ ├── Sqrt3InterpolatingSubdividerLabsikGreinerT.hh │ │ │ │ ├── Sqrt3T.hh │ │ │ │ └── SubdividerT.hh │ │ │ ├── Tools.pro │ │ │ ├── Utils │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── GLConstAsString.hh │ │ │ ├── Gnuplot.cc │ │ │ ├── Gnuplot.hh │ │ │ ├── HeapT.hh │ │ │ ├── MeshCheckerT.cc │ │ │ ├── MeshCheckerT.hh │ │ │ ├── NumLimitsT.hh │ │ │ ├── StripifierT.cc │ │ │ ├── StripifierT.hh │ │ │ ├── TestingFramework.hh │ │ │ ├── Timer.cc │ │ │ ├── Timer.hh │ │ │ ├── conio.cc │ │ │ ├── conio.hh │ │ │ ├── getopt.c │ │ │ └── getopt.h │ │ │ ├── VDPM │ │ │ ├── ACGMakefile │ │ │ ├── MeshTraits.hh │ │ │ ├── StreamingDef.hh │ │ │ ├── VFront.cc │ │ │ ├── VFront.hh │ │ │ ├── VHierarchy.cc │ │ │ ├── VHierarchy.hh │ │ │ ├── VHierarchyNode.hh │ │ │ ├── VHierarchyNodeIndex.cc │ │ │ ├── VHierarchyNodeIndex.hh │ │ │ ├── VHierarchyWindow.cc │ │ │ ├── VHierarchyWindow.hh │ │ │ ├── ViewingParameters.cc │ │ │ ├── ViewingParameters.hh │ │ │ └── xpm │ │ │ │ ├── fileopen.xpm │ │ │ │ ├── fileprint.xpm │ │ │ │ └── filesave.xpm │ │ │ └── VS2008Tools.vcproj │ ├── Python │ │ ├── Bindings.cc │ │ ├── Bindings.hh │ │ ├── CMakeLists.txt │ │ ├── Circulator.hh │ │ ├── Example │ │ │ ├── CMakeLists.txt │ │ │ └── Example.cc │ │ ├── InputOutput.hh │ │ ├── Iterator.hh │ │ ├── Mesh.hh │ │ ├── PropertyManager.hh │ │ ├── Unittests │ │ │ ├── test_add_face.py │ │ │ ├── test_boundary.py │ │ │ ├── test_delete_face.py │ │ │ ├── test_property.py │ │ │ ├── test_python.py │ │ │ ├── test_read_write_obj.py │ │ │ ├── test_read_write_off.py │ │ │ ├── test_read_write_om.py │ │ │ ├── test_read_write_ply.py │ │ │ ├── test_read_write_stl.py │ │ │ ├── test_split_copy.py │ │ │ ├── test_trimesh_circulator_current_halfedge_handle_replacement.py │ │ │ ├── test_trimesh_circulator_face_edge.py │ │ │ ├── test_trimesh_circulator_face_face.py │ │ │ ├── test_trimesh_circulator_face_halfedge.py │ │ │ ├── test_trimesh_circulator_face_vertex.py │ │ │ ├── test_trimesh_circulator_halfedge_loop.py │ │ │ ├── test_trimesh_circulator_vertex_edge.py │ │ │ ├── test_trimesh_circulator_vertex_face.py │ │ │ ├── test_trimesh_circulator_vertex_ihalfedge.py │ │ │ ├── test_trimesh_circulator_vertex_ohalfedge.py │ │ │ ├── test_trimesh_circulator_vertex_vertex.py │ │ │ ├── test_trimesh_collapse.py │ │ │ ├── test_trimesh_garbage_collection.py │ │ │ ├── test_trimesh_iterators.py │ │ │ ├── test_trimesh_normal_calculations.py │ │ │ ├── test_trimesh_others.py │ │ │ └── test_vector_type.py │ │ └── Vector.hh │ └── Unittests │ │ ├── CMakeLists.txt │ │ ├── TestFiles │ │ ├── cube-minimal-custom_props.ply │ │ ├── cube-minimal-normals.ply │ │ ├── cube-minimal-texCoords.obj │ │ ├── cube-minimal-texCoords.om │ │ ├── cube-minimal-texCoords.ply │ │ ├── cube-minimal-vertex-colors-after-vertex-definition.obj │ │ ├── cube-minimal-vertex-colors-as-vc-lines.obj │ │ ├── cube-minimal-vertexColors.om │ │ ├── cube-minimal-vertexColors.ply │ │ ├── cube-minimal.obj │ │ ├── cube-minimal.om │ │ ├── cube-minimal.ply │ │ ├── cube1.off │ │ ├── cube1.pm │ │ ├── cube1.stl │ │ ├── cube1Binary.stl │ │ ├── cube1_customProps.om │ │ ├── meshlab.ply │ │ ├── pointCloudBadEncoding.ply │ │ ├── pointCloudGoodEncoding.ply │ │ ├── square_material.mtl │ │ ├── square_material.obj │ │ ├── square_material_texture.mtl │ │ └── square_material_texture.obj │ │ ├── fill_props.hh │ │ ├── generate_cube.hh │ │ ├── int2roman.hh │ │ ├── unittests.cc │ │ ├── unittests_add_face.cc │ │ ├── unittests_boundary.cc │ │ ├── unittests_common.hh │ │ ├── unittests_decimater.cc │ │ ├── unittests_delete_face.cc │ │ ├── unittests_faceless_mesh.cc │ │ ├── unittests_mc_decimater.cc │ │ ├── unittests_mesh_cast.cc │ │ ├── unittests_mesh_dual.cc │ │ ├── unittests_mixed_decimater.cc │ │ ├── unittests_property.cc │ │ ├── unittests_randomNumberGenerator.cc │ │ ├── unittests_read_write_OBJ.cc │ │ ├── unittests_read_write_OFF.cc │ │ ├── unittests_read_write_OM.cc │ │ ├── unittests_read_write_PLY.cc │ │ ├── unittests_read_write_STL.cc │ │ ├── unittests_split_copy.cc │ │ ├── unittests_stripifier.cc │ │ ├── unittests_subdivider_adaptive.cc │ │ ├── unittests_subdivider_uniform.cc │ │ ├── unittests_trimesh_circulator_current_halfedge_handle_replacement.cc │ │ ├── unittests_trimesh_circulator_face_edge.cc │ │ ├── unittests_trimesh_circulator_face_face.cc │ │ ├── unittests_trimesh_circulator_face_halfedge.cc │ │ ├── unittests_trimesh_circulator_face_vertex.cc │ │ ├── unittests_trimesh_circulator_halfedge_loop.cc │ │ ├── unittests_trimesh_circulator_vertex_edge.cc │ │ ├── unittests_trimesh_circulator_vertex_face.cc │ │ ├── unittests_trimesh_circulator_vertex_ihalfedge.cc │ │ ├── unittests_trimesh_circulator_vertex_ohalfedge.cc │ │ ├── unittests_trimesh_circulator_vertex_vertex.cc │ │ ├── unittests_trimesh_collapse.cc │ │ ├── unittests_trimesh_garbage_collection.cc │ │ ├── unittests_trimesh_iterators.cc │ │ ├── unittests_trimesh_normal_calculations.cc │ │ ├── unittests_trimesh_others.cc │ │ ├── unittests_tutorials.cc │ │ ├── unittests_vdpm.cc │ │ └── unittests_vector_type.cc │ └── templates │ ├── cc │ ├── cpp │ ├── h │ └── hh └── trunk ├── .qmake.cache ├── ACGMakefile ├── CHANGELOG ├── CMakeLists.txt ├── Doc ├── ACGMakefile ├── CMakeLists.txt ├── Concepts │ ├── MeshItems.hh │ └── MeshKernel.hh ├── Examples │ ├── BaseExporter.hh │ ├── BaseImporter.hh │ ├── BaseReader.hh │ ├── adasub.cc │ ├── build-trimesh.cc │ ├── circulator_functions.cc │ ├── circulators.cc │ ├── decimater.cc │ ├── draw_normals.cc │ ├── iterators.cc │ ├── mesh_io.cc │ ├── mymesh.cc │ ├── nav_code1.cc │ ├── nav_code2.cc │ ├── nav_code3.cc │ ├── nav_code4.cc │ ├── nav_code4a.cc │ ├── nav_code_to_from.cc │ ├── python_tutorial.py │ ├── traits0.cc │ ├── traits1.cc │ ├── traits2.cc │ ├── traits3.cc │ ├── traits4.cc │ └── traits5.cc ├── Tutorial │ ├── 01-build_cube │ │ ├── ACGMakefile │ │ └── build_cube.cc │ ├── 02-iterators │ │ ├── ACGMakefile │ │ └── smooth.cc │ ├── 03-properties │ │ ├── ACGMakefile │ │ └── smooth.cc │ ├── 04-stl_algorithms │ │ ├── ACGMakefile │ │ ├── smooth.cc │ │ └── smooth_algo.hh │ ├── 05-std_properties │ │ ├── ACGMakefile │ │ └── properties.cc │ ├── 06-attributes │ │ ├── ACGMakefile │ │ └── attributes.cc │ ├── 07-traits │ │ ├── ACGMakefile │ │ └── smooth.cc │ ├── 07b-delete_geometry │ │ └── delete_geometry.cc │ ├── 08-io_options │ │ ├── ACGMakefile │ │ └── io_options.cc │ ├── 09-persistence │ │ ├── ACGMakefile │ │ ├── fill_props.hh │ │ ├── generate_cube.hh │ │ ├── int2roman.cc │ │ ├── int2roman.hh │ │ ├── persistence.cc │ │ └── stats.hh │ ├── ACGMakefile │ └── CMakeLists.txt ├── changelog.docu ├── decimater.docu ├── doxy.config.in ├── html │ ├── acg_footer.html │ └── acg_logo.png ├── images │ ├── acg_logo_small.png │ ├── class-hierarchy.png │ ├── class-hierarchy2.png │ ├── collapse_info.png │ ├── diagrams.sxi │ ├── halfedge_structure.gif │ ├── halfedge_structure2.png │ ├── halfedge_structure3.png │ ├── inheritance-simple.png │ ├── inheritance-simple.scaled.png │ ├── inheritance.fig │ ├── inheritance.gif │ ├── iomanager.gif │ ├── iomanager.png │ ├── mesh.collapse.png │ ├── mesh.flip.png │ ├── mesh.inner.png │ ├── mesh.inout.png │ ├── mesh.normal.png │ ├── mesh.opp.png │ ├── mesh.outer.png │ ├── mesh.to.from.png │ ├── om-format.png │ └── src │ │ ├── iomanager.tex │ │ ├── mesh.collapse.tex │ │ ├── mesh.flip.tex │ │ ├── mesh.inner.tex │ │ ├── mesh.io.tex │ │ ├── mesh.normal.tex │ │ ├── mesh.opp.tex │ │ ├── mesh.outer.tex │ │ └── mesh.to.from.tex ├── mainpage.docu ├── mesh.docu ├── misc.docu ├── namespaces.docu ├── navigation.docu ├── operations.docu ├── python_tutorial.docu ├── smoother.docu ├── subdivider.docu ├── tools.docu ├── tutorial_01.docu ├── tutorial_02.docu ├── tutorial_03.docu ├── tutorial_04.docu ├── tutorial_05.docu ├── tutorial_06.docu ├── tutorial_07.docu ├── tutorial_07b.docu ├── tutorial_08.docu ├── tutorial_09.docu ├── tutorial_build.docu ├── tutorial_main.docu └── vdpm.docu ├── LICENSE ├── COPYING ├── COPYING.EXCEPTIONS ├── COPYING.LESSER └── LICENSEHEADER ├── OpenMesh.pro ├── README ├── VERSION ├── cmake ├── ACGCommon.cmake ├── ACGCompiler.cmake ├── ACGDoxygen.cmake ├── ACGOutput.cmake ├── FindGLEW.cmake ├── FindGLUT.cmake ├── FindGoogleTest.cmake ├── FindOpenMP.cmake ├── FindOpenMesh.cmake ├── OpenMeshPackage.cmake ├── fixbundle.cmake.in └── fixbundle.cmake.win.in ├── debian ├── changelog ├── compat ├── control ├── copyright └── rules ├── qmake ├── all.include ├── architecture.include ├── compiler.include ├── functions.include ├── packages │ ├── packages.Darwin │ ├── packages.Linux │ └── packages.Windows └── targets.include ├── release.howto ├── src ├── OpenMesh │ ├── ACGMakefile │ ├── ACGMakefile.proj │ ├── Apps │ │ ├── CMakeLists.txt │ │ ├── Decimating │ │ │ ├── CmdOption.hh │ │ │ ├── DecimaterGui │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── DecimaterGui.pro │ │ │ ├── DecimaterViewerWidget.cc │ │ │ ├── DecimaterViewerWidget.hh │ │ │ ├── commandlineDecimater │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── commandlineDecimater.pro │ │ │ ├── decimater.cc │ │ │ └── decimaterviewer.cc │ │ ├── Dualizer │ │ │ ├── CMakeLists.txt │ │ │ └── dualizer.cc │ │ ├── ProgViewer │ │ │ ├── ACGMakefile │ │ │ ├── CMakeLists.txt │ │ │ ├── OpenMesh_Apps_ProgViewer.vcproj │ │ │ ├── ProgViewerWidget.cc │ │ │ ├── ProgViewerWidget.hh │ │ │ └── progviewer.cc │ │ ├── QtViewer │ │ │ ├── CMakeLists.txt │ │ │ ├── MeshViewerWidget.hh │ │ │ ├── MeshViewerWidgetT.cc │ │ │ ├── MeshViewerWidgetT.hh │ │ │ ├── QGLViewerWidget.cc │ │ │ ├── QGLViewerWidget.hh │ │ │ ├── QtViewer.pro │ │ │ └── meshviewer.cc │ │ ├── Smoothing │ │ │ ├── CMakeLists.txt │ │ │ ├── Smoothing.pro │ │ │ └── smooth.cc │ │ ├── Subdivider │ │ │ ├── MeshViewerWidget.hh │ │ │ ├── SubdivideWidget.cc │ │ │ ├── SubdivideWidget.hh │ │ │ ├── SubdividerGui │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── SubdividerGui.pro │ │ │ ├── adaptive_subdivider.cc │ │ │ ├── commandlineAdaptiveSubdivider │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── commandlineAdaptiveSubdivider.pro │ │ │ ├── commandlineSubdivider │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── commandlineSubdivider.pro │ │ │ ├── qtsubdivider.cc │ │ │ └── subdivider.cc │ │ ├── Unsupported │ │ │ ├── IvViewer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── SoOpenMeshNodeT.cc │ │ │ │ ├── SoOpenMeshNodeT.hh │ │ │ │ ├── SoOpenMeshSupport.hh │ │ │ │ └── ivviewer.cc │ │ │ ├── OsgViewer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── README │ │ │ │ ├── meshviewer.cc │ │ │ │ └── osgviewer.cc │ │ │ ├── Streaming-qt4 │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Client │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ │ ├── MyMesh.hh │ │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ │ ├── VDPMStreamingClient.cc │ │ │ │ │ └── camera.cmr │ │ │ │ └── Server │ │ │ │ │ ├── ACGMakefile │ │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ │ ├── VDPMStreamingServer.hh │ │ │ │ │ ├── bunny.pm │ │ │ │ │ ├── bunny.spm │ │ │ │ │ └── rockerArm.pm │ │ │ └── Streaming │ │ │ │ ├── ACGMakefile │ │ │ │ ├── Client │ │ │ │ ├── ACGMakefile │ │ │ │ ├── MeshViewerWidgetT.cc │ │ │ │ ├── MeshViewerWidgetT.hh │ │ │ │ ├── MyMesh.hh │ │ │ │ ├── QGLViewerWidget.cc │ │ │ │ ├── QGLViewerWidget.hh │ │ │ │ ├── VDPMClientViewerWidget.cc │ │ │ │ ├── VDPMClientViewerWidget.hh │ │ │ │ └── VDPMStreamingClient.cc │ │ │ │ └── Server │ │ │ │ ├── ACGMakefile │ │ │ │ ├── ServerSideVDPM.cc │ │ │ │ ├── ServerSideVDPM.hh │ │ │ │ ├── VDPMServerSession.cc │ │ │ │ ├── VDPMServerSession.hh │ │ │ │ ├── VDPMServerSocket.hh │ │ │ │ ├── VDPMServerViewerWidget.cc │ │ │ │ ├── VDPMServerViewerWidget.hh │ │ │ │ ├── VDPMStreamingServer.cc │ │ │ │ └── VDPMStreamingServer.hh │ │ ├── VDProgMesh │ │ │ ├── Analyzer │ │ │ │ ├── Analyzer.pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── vdpmanalyzer.cc │ │ │ ├── Synthesizer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Synthesizer.pro │ │ │ │ ├── VDPMSynthesizerViewerWidget.cc │ │ │ │ ├── VDPMSynthesizerViewerWidget.hh │ │ │ │ └── vdpmsynthesizer.cc │ │ │ └── mkbalancedpm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── mkbalancedpm.cc │ │ │ │ └── mkbalancedpm.pro │ │ └── mconvert │ │ │ ├── CMakeLists.txt │ │ │ ├── VS2008mconvert.vcproj │ │ │ ├── mconvert.cc │ │ │ └── mconvert.pro │ ├── Core │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Core.pro │ │ ├── Geometry │ │ │ ├── ACGMakefile │ │ │ ├── Config.hh │ │ │ ├── LoopSchemeMaskT.hh │ │ │ ├── MathDefs.hh │ │ │ ├── NormalConeT.cc │ │ │ ├── NormalConeT.hh │ │ │ ├── Plane3d.hh │ │ │ ├── QuadricT.hh │ │ │ ├── VectorT.hh │ │ │ └── VectorT_inc.hh │ │ ├── IO │ │ │ ├── ACGMakefile │ │ │ ├── BinaryHelper.cc │ │ │ ├── BinaryHelper.hh │ │ │ ├── IOInstances.hh │ │ │ ├── IOManager.cc │ │ │ ├── IOManager.hh │ │ │ ├── MeshIO.hh │ │ │ ├── OFFFormat.hh │ │ │ ├── OMFormat.cc │ │ │ ├── OMFormat.hh │ │ │ ├── OMFormatT.cc │ │ │ ├── Options.hh │ │ │ ├── SR_binary.hh │ │ │ ├── SR_binary_spec.hh │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ ├── SR_rbo.hh │ │ │ ├── SR_store.hh │ │ │ ├── SR_types.hh │ │ │ ├── StoreRestore.hh │ │ │ ├── exporter │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseExporter.hh │ │ │ │ └── ExporterT.hh │ │ │ ├── importer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseImporter.hh │ │ │ │ └── ImporterT.hh │ │ │ ├── reader │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseReader.cc │ │ │ │ ├── BaseReader.hh │ │ │ │ ├── OBJReader.cc │ │ │ │ ├── OBJReader.hh │ │ │ │ ├── OFFReader.cc │ │ │ │ ├── OFFReader.hh │ │ │ │ ├── OMReader.cc │ │ │ │ ├── OMReader.hh │ │ │ │ ├── PLYReader.cc │ │ │ │ ├── PLYReader.hh │ │ │ │ ├── STLReader.cc │ │ │ │ └── STLReader.hh │ │ │ └── writer │ │ │ │ ├── ACGMakefile │ │ │ │ ├── BaseWriter.cc │ │ │ │ ├── BaseWriter.hh │ │ │ │ ├── OBJWriter.cc │ │ │ │ ├── OBJWriter.hh │ │ │ │ ├── OFFWriter.cc │ │ │ │ ├── OFFWriter.hh │ │ │ │ ├── OMWriter.cc │ │ │ │ ├── OMWriter.hh │ │ │ │ ├── PLYWriter.cc │ │ │ │ ├── PLYWriter.hh │ │ │ │ ├── STLWriter.cc │ │ │ │ ├── STLWriter.hh │ │ │ │ ├── VTKWriter.cc │ │ │ │ └── VTKWriter.hh │ │ ├── Mesh │ │ │ ├── ACGMakefile │ │ │ ├── ArrayItems.hh │ │ │ ├── ArrayKernel.cc │ │ │ ├── ArrayKernel.hh │ │ │ ├── ArrayKernelT.cc │ │ │ ├── AttribKernelT.hh │ │ │ ├── Attributes.hh │ │ │ ├── BaseKernel.cc │ │ │ ├── BaseKernel.hh │ │ │ ├── BaseMesh.hh │ │ │ ├── Casts.hh │ │ │ ├── CirculatorsT.hh │ │ │ ├── FinalMeshItemsT.hh │ │ │ ├── Handles.hh │ │ │ ├── IteratorsT.hh │ │ │ ├── PolyConnectivity.cc │ │ │ ├── PolyConnectivity.hh │ │ │ ├── PolyMeshT.cc │ │ │ ├── PolyMeshT.hh │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ ├── Status.hh │ │ │ ├── Traits.hh │ │ │ ├── TriConnectivity.cc │ │ │ ├── TriConnectivity.hh │ │ │ ├── TriMeshT.cc │ │ │ ├── TriMeshT.hh │ │ │ ├── TriMesh_ArrayKernelT.hh │ │ │ └── gen │ │ │ │ ├── circulators_header.hh │ │ │ │ ├── circulators_template.hh │ │ │ │ ├── footer.hh │ │ │ │ ├── generate.sh │ │ │ │ ├── iterators_header.hh │ │ │ │ └── iterators_template.hh │ │ ├── System │ │ │ ├── ACGMakefile │ │ │ ├── OpenMeshDLLMacros.hh │ │ │ ├── compiler.hh │ │ │ ├── config.h │ │ │ ├── config.hh │ │ │ ├── mostream.hh │ │ │ ├── omstream.cc │ │ │ └── omstream.hh │ │ ├── Templates │ │ │ ├── newClass.cc │ │ │ ├── newClass.hh │ │ │ ├── newClass.sh │ │ │ ├── newClassT.cc │ │ │ ├── newClassT.hh │ │ │ └── newClassT.sh │ │ ├── Utils │ │ │ ├── ACGMakefile │ │ │ ├── AutoPropertyHandleT.hh │ │ │ ├── BaseProperty.cc │ │ │ ├── BaseProperty.hh │ │ │ ├── Endian.cc │ │ │ ├── Endian.hh │ │ │ ├── GenProg.hh │ │ │ ├── Noncopyable.hh │ │ │ ├── Property.hh │ │ │ ├── PropertyContainer.hh │ │ │ ├── PropertyManager.hh │ │ │ ├── RandomNumberGenerator.cc │ │ │ ├── RandomNumberGenerator.hh │ │ │ ├── SingletonT.cc │ │ │ ├── SingletonT.hh │ │ │ ├── color_cast.hh │ │ │ ├── vector_cast.hh │ │ │ └── vector_traits.hh │ │ └── VS2008Core.vcproj │ ├── Examples │ │ ├── Examples.pro │ │ ├── Tutorial01 │ │ │ ├── Tutorial01.pro │ │ │ └── cube.cc │ │ ├── Tutorial02 │ │ │ ├── Tutorial02.pro │ │ │ └── smooth.cc │ │ ├── Tutorial03 │ │ │ ├── Tutorial03.pro │ │ │ └── smooth.cc │ │ ├── Tutorial04 │ │ │ ├── Tutorial04.pro │ │ │ ├── smooth.cc │ │ │ └── smooth_algo.hh │ │ ├── Tutorial05 │ │ │ ├── Tutorial05.pro │ │ │ └── properties.cc │ │ ├── Tutorial06 │ │ │ ├── Tutorial06.pro │ │ │ └── attributes.cc │ │ ├── Tutorial07 │ │ │ ├── Tutorial07.pro │ │ │ └── smooth.cc │ │ ├── Tutorial08 │ │ │ ├── Tutorial08.pro │ │ │ └── delete_geometry.cc │ │ ├── Tutorial09 │ │ │ ├── Tutorial09.pro │ │ │ └── io_options.cc │ │ └── Tutorial10 │ │ │ ├── Tutorial10.pro │ │ │ ├── fill_props.hh │ │ │ ├── generate_cube.hh │ │ │ ├── int2roman.cc │ │ │ ├── int2roman.hh │ │ │ ├── persistence.cc │ │ │ └── stats.hh │ └── Tools │ │ ├── ACGMakefile │ │ ├── CMakeLists.txt │ │ ├── Decimater │ │ ├── ACGMakefile │ │ ├── BaseDecimaterT.cc │ │ ├── BaseDecimaterT.hh │ │ ├── CollapseInfoT.hh │ │ ├── DecimaterT.cc │ │ ├── DecimaterT.hh │ │ ├── McDecimaterT.cc │ │ ├── McDecimaterT.hh │ │ ├── MixedDecimaterT.cc │ │ ├── MixedDecimaterT.hh │ │ ├── ModAspectRatioT.cc │ │ ├── ModAspectRatioT.hh │ │ ├── ModBaseT.hh │ │ ├── ModEdgeLengthT.cc │ │ ├── ModEdgeLengthT.hh │ │ ├── ModHausdorffT.cc │ │ ├── ModHausdorffT.hh │ │ ├── ModIndependentSetsT.hh │ │ ├── ModNormalDeviationT.hh │ │ ├── ModNormalFlippingT.hh │ │ ├── ModProgMeshT.cc │ │ ├── ModProgMeshT.hh │ │ ├── ModQuadricT.cc │ │ ├── ModQuadricT.hh │ │ ├── ModRoundnessT.hh │ │ ├── Observer.cc │ │ └── Observer.hh │ │ ├── Dualizer │ │ └── meshDualT.hh │ │ ├── Kernel_OSG │ │ ├── ACGMakefile │ │ ├── ArrayKernelT.hh │ │ ├── AttribKernelT.hh │ │ ├── PropertyKernel.hh │ │ ├── PropertyT.hh │ │ ├── Traits.hh │ │ ├── TriMesh_OSGArrayKernelT.hh │ │ ├── VectorAdapter.hh │ │ ├── bindT.hh │ │ └── color_cast.hh │ │ ├── Smoother │ │ ├── JacobiLaplaceSmootherT.cc │ │ ├── JacobiLaplaceSmootherT.hh │ │ ├── LaplaceSmootherT.cc │ │ ├── LaplaceSmootherT.hh │ │ ├── SmootherT.cc │ │ ├── SmootherT.hh │ │ └── smooth_mesh.hh │ │ ├── Subdivider │ │ ├── ACGMakefile │ │ ├── Adaptive │ │ │ ├── ACGMakefile │ │ │ └── Composite │ │ │ │ ├── ACGMakefile │ │ │ │ ├── CompositeT.cc │ │ │ │ ├── CompositeT.hh │ │ │ │ ├── CompositeTraits.hh │ │ │ │ ├── RuleInterfaceT.hh │ │ │ │ ├── RulesT.cc │ │ │ │ ├── RulesT.hh │ │ │ │ └── Traits.hh │ │ └── Uniform │ │ │ ├── ACGMakefile │ │ │ ├── CatmullClarkT.cc │ │ │ ├── CatmullClarkT.hh │ │ │ ├── Composite │ │ │ ├── ACGMakefile │ │ │ ├── CompositeT.cc │ │ │ ├── CompositeT.hh │ │ │ └── CompositeTraits.hh │ │ │ ├── CompositeLoopT.hh │ │ │ ├── CompositeSqrt3T.hh │ │ │ ├── LongestEdgeT.hh │ │ │ ├── LoopT.hh │ │ │ ├── ModifiedButterFlyT.hh │ │ │ ├── Sqrt3InterpolatingSubdividerLabsikGreinerT.hh │ │ │ ├── Sqrt3T.hh │ │ │ └── SubdividerT.hh │ │ ├── Tools.pro │ │ ├── Utils │ │ ├── ACGMakefile │ │ ├── Config.hh │ │ ├── GLConstAsString.hh │ │ ├── Gnuplot.cc │ │ ├── Gnuplot.hh │ │ ├── HeapT.hh │ │ ├── MeshCheckerT.cc │ │ ├── MeshCheckerT.hh │ │ ├── NumLimitsT.hh │ │ ├── StripifierT.cc │ │ ├── StripifierT.hh │ │ ├── TestingFramework.hh │ │ ├── Timer.cc │ │ ├── Timer.hh │ │ ├── conio.cc │ │ ├── conio.hh │ │ ├── getopt.c │ │ └── getopt.h │ │ ├── VDPM │ │ ├── ACGMakefile │ │ ├── MeshTraits.hh │ │ ├── StreamingDef.hh │ │ ├── VFront.cc │ │ ├── VFront.hh │ │ ├── VHierarchy.cc │ │ ├── VHierarchy.hh │ │ ├── VHierarchyNode.hh │ │ ├── VHierarchyNodeIndex.cc │ │ ├── VHierarchyNodeIndex.hh │ │ ├── VHierarchyWindow.cc │ │ ├── VHierarchyWindow.hh │ │ ├── ViewingParameters.cc │ │ ├── ViewingParameters.hh │ │ └── xpm │ │ │ ├── fileopen.xpm │ │ │ ├── fileprint.xpm │ │ │ └── filesave.xpm │ │ └── VS2008Tools.vcproj ├── Python │ ├── Bindings.cc │ ├── Bindings.hh │ ├── CMakeLists.txt │ ├── Circulator.hh │ ├── Example │ │ ├── CMakeLists.txt │ │ └── Example.cc │ ├── InputOutput.hh │ ├── Iterator.hh │ ├── Mesh.hh │ ├── PropertyManager.hh │ ├── Unittests │ │ ├── test_add_face.py │ │ ├── test_boundary.py │ │ ├── test_delete_face.py │ │ ├── test_property.py │ │ ├── test_python.py │ │ ├── test_read_write_obj.py │ │ ├── test_read_write_off.py │ │ ├── test_read_write_om.py │ │ ├── test_read_write_ply.py │ │ ├── test_read_write_stl.py │ │ ├── test_split_copy.py │ │ ├── test_trimesh_circulator_current_halfedge_handle_replacement.py │ │ ├── test_trimesh_circulator_face_edge.py │ │ ├── test_trimesh_circulator_face_face.py │ │ ├── test_trimesh_circulator_face_halfedge.py │ │ ├── test_trimesh_circulator_face_vertex.py │ │ ├── test_trimesh_circulator_halfedge_loop.py │ │ ├── test_trimesh_circulator_vertex_edge.py │ │ ├── test_trimesh_circulator_vertex_face.py │ │ ├── test_trimesh_circulator_vertex_ihalfedge.py │ │ ├── test_trimesh_circulator_vertex_ohalfedge.py │ │ ├── test_trimesh_circulator_vertex_vertex.py │ │ ├── test_trimesh_collapse.py │ │ ├── test_trimesh_garbage_collection.py │ │ ├── test_trimesh_iterators.py │ │ ├── test_trimesh_normal_calculations.py │ │ ├── test_trimesh_others.py │ │ └── test_vector_type.py │ └── Vector.hh └── Unittests │ ├── CMakeLists.txt │ ├── TestFiles │ ├── cube-minimal-custom_props.ply │ ├── cube-minimal-normals.ply │ ├── cube-minimal-texCoords.obj │ ├── cube-minimal-texCoords.om │ ├── cube-minimal-texCoords.ply │ ├── cube-minimal-vertex-colors-after-vertex-definition.obj │ ├── cube-minimal-vertex-colors-as-vc-lines.obj │ ├── cube-minimal-vertexColors.om │ ├── cube-minimal-vertexColors.ply │ ├── cube-minimal.obj │ ├── cube-minimal.om │ ├── cube-minimal.ply │ ├── cube1.off │ ├── cube1.pm │ ├── cube1.stl │ ├── cube1Binary.stl │ ├── cube1_customProps.om │ ├── meshlab.ply │ ├── pointCloudBadEncoding.ply │ ├── pointCloudGoodEncoding.ply │ ├── square_material.mtl │ ├── square_material.obj │ ├── square_material_texture.mtl │ └── square_material_texture.obj │ ├── fill_props.hh │ ├── generate_cube.hh │ ├── int2roman.hh │ ├── unittests.cc │ ├── unittests_add_face.cc │ ├── unittests_boundary.cc │ ├── unittests_common.hh │ ├── unittests_decimater.cc │ ├── unittests_delete_face.cc │ ├── unittests_faceless_mesh.cc │ ├── unittests_mc_decimater.cc │ ├── unittests_mesh_cast.cc │ ├── unittests_mesh_dual.cc │ ├── unittests_mixed_decimater.cc │ ├── unittests_property.cc │ ├── unittests_randomNumberGenerator.cc │ ├── unittests_read_write_OBJ.cc │ ├── unittests_read_write_OFF.cc │ ├── unittests_read_write_OM.cc │ ├── unittests_read_write_PLY.cc │ ├── unittests_read_write_STL.cc │ ├── unittests_split_copy.cc │ ├── unittests_stripifier.cc │ ├── unittests_subdivider_adaptive.cc │ ├── unittests_subdivider_uniform.cc │ ├── unittests_trimesh_circulator_current_halfedge_handle_replacement.cc │ ├── unittests_trimesh_circulator_face_edge.cc │ ├── unittests_trimesh_circulator_face_face.cc │ ├── unittests_trimesh_circulator_face_halfedge.cc │ ├── unittests_trimesh_circulator_face_vertex.cc │ ├── unittests_trimesh_circulator_halfedge_loop.cc │ ├── unittests_trimesh_circulator_vertex_edge.cc │ ├── unittests_trimesh_circulator_vertex_face.cc │ ├── unittests_trimesh_circulator_vertex_ihalfedge.cc │ ├── unittests_trimesh_circulator_vertex_ohalfedge.cc │ ├── unittests_trimesh_circulator_vertex_vertex.cc │ ├── unittests_trimesh_collapse.cc │ ├── unittests_trimesh_garbage_collection.cc │ ├── unittests_trimesh_iterators.cc │ ├── unittests_trimesh_normal_calculations.cc │ ├── unittests_trimesh_others.cc │ ├── unittests_tutorials.cc │ ├── unittests_vdpm.cc │ └── unittests_vector_type.cc └── templates ├── cc ├── cpp ├── h └── hh /branches/OpenMesh-2.4.1/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/.qmake.cache -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/ACGMakefile -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/CHANGELOG -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/CMakeLists.txt -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/Doc/ACGMakefile -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/Doc/mesh.docu -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/Doc/misc.docu -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/Doc/tools.docu -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/Doc/vdpm.docu -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/LICENSE/COPYING -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/OpenMesh.pro -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/README -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/VERSION: -------------------------------------------------------------------------------- 1 | VERSION=2.4 2 | MAJOR=2 3 | MINOR=4 4 | PATCH=0 5 | ID=OPENMESH 6 | 7 | -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/debian/control -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/debian/rules -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/release.howto -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/templates/cc -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/templates/cpp -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/templates/h -------------------------------------------------------------------------------- /branches/OpenMesh-2.4.1/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-2.4.1/templates/hh -------------------------------------------------------------------------------- /branches/OpenMesh-Python/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/.qmake.cache -------------------------------------------------------------------------------- /branches/OpenMesh-Python/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/ACGMakefile -------------------------------------------------------------------------------- /branches/OpenMesh-Python/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/CHANGELOG -------------------------------------------------------------------------------- /branches/OpenMesh-Python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/CMakeLists.txt -------------------------------------------------------------------------------- /branches/OpenMesh-Python/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/Doc/mesh.docu -------------------------------------------------------------------------------- /branches/OpenMesh-Python/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/Doc/misc.docu -------------------------------------------------------------------------------- /branches/OpenMesh-Python/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/Doc/tools.docu -------------------------------------------------------------------------------- /branches/OpenMesh-Python/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/Doc/vdpm.docu -------------------------------------------------------------------------------- /branches/OpenMesh-Python/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/OpenMesh.pro -------------------------------------------------------------------------------- /branches/OpenMesh-Python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/README -------------------------------------------------------------------------------- /branches/OpenMesh-Python/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/VERSION -------------------------------------------------------------------------------- /branches/OpenMesh-Python/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /branches/OpenMesh-Python/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/debian/control -------------------------------------------------------------------------------- /branches/OpenMesh-Python/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/debian/rules -------------------------------------------------------------------------------- /branches/OpenMesh-Python/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/release.howto -------------------------------------------------------------------------------- /branches/OpenMesh-Python/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/templates/cc -------------------------------------------------------------------------------- /branches/OpenMesh-Python/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/templates/cpp -------------------------------------------------------------------------------- /branches/OpenMesh-Python/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/templates/h -------------------------------------------------------------------------------- /branches/OpenMesh-Python/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/branches/OpenMesh-Python/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/ACGMakefile.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/ACGMakefile.proj -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Apps/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Apps/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Core/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Core/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Core/IO/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Core/IO/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Core/IO/MeshIO.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Core/IO/MeshIO.hh -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Core/IO/OMFormat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Core/IO/OMFormat.cc -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Core/IO/OMFormat.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Core/IO/OMFormat.hh -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Core/IO/Options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Core/IO/Options.hh -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Core/IO/SR_rbo.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Core/IO/SR_rbo.hh -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Core/IO/SR_store.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Core/IO/SR_store.hh -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Core/IO/SR_types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Core/IO/SR_types.hh -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Core/Mesh/Casts.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Core/Mesh/Casts.hh -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Core/Mesh/Status.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Core/Mesh/Status.hh -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Core/Mesh/Traits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Core/Mesh/Traits.hh -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Core/System/config.hh: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Doc/decimater.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Doc/decimater.docu -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Doc/history.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Doc/history.docu -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Doc/namespaces.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Doc/namespaces.docu -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Doc/subdivider.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Doc/subdivider.docu -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Doxyfile -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/LICENSE -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/README -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/Tools/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/Tools/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/VERSION: -------------------------------------------------------------------------------- 1 | 1-9-6 2 | $Name: $ 3 | -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-1.9.6/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-1.9.6/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/CHANGES -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Core/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Core/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Core/Core.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Core/Core.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Core/IO/MeshIO.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Core/IO/MeshIO.hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Core/IO/SR_rbo.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Core/IO/SR_rbo.hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Core/System/config.hh: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Doc/Doxyfile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Doc/history.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Doc/history.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/LICENSE -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/OpenMesh.kdevelop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/OpenMesh.kdevelop -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/README -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Tools/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Tools/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/Tools/Tools.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/Tools/Tools.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/VERSION: -------------------------------------------------------------------------------- 1 | 2-0-RC1 2 | $Name: $ 3 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/migrate.sh -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/porting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/porting.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC1/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC1/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/CHANGES -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Changes.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Core/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Core/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Core/Core.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Core/Core.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Core/IO/MeshIO.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Core/IO/MeshIO.hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Core/IO/SR_rbo.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Core/IO/SR_rbo.hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Core/System/config.hh: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Doc/Doxyfile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Doc/history.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Doc/history.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/LICENSE -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/README -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Tools/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Tools/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/Tools/Tools.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/Tools/Tools.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/VERSION: -------------------------------------------------------------------------------- 1 | 2-0-RC1 2 | $Name: $ 3 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC2/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC2/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/CHANGELOG -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/Doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/Doc/Doxyfile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/Doc/history.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/Doc/history.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/LICENSE/COPYING -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/README -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/VERSION -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC3/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC3/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/CHANGELOG -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/Doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/Doc/Doxyfile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/Doc/history.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/Doc/history.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/LICENSE/COPYING -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/README -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/VERSION -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/debian/changelog -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/debian/control -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/debian/copyright -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/debian/rules -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC4/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC4/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/CHANGELOG -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/Doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/Doc/Doxyfile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/Doc/history.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/Doc/history.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/LICENSE/COPYING -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/README -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/VERSION -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/debian/changelog -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/debian/control -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/debian/copyright -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/debian/rules -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-2.0-RC5/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0-RC5/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/CHANGELOG -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/Doxyfile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/decimater.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/decimater.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/doxy.config.in -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/history.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/history.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/namespaces.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/namespaces.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/navigation.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/navigation.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/operations.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/operations.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/subdivider.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/subdivider.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/LICENSE/COPYING -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/README -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/VERSION: -------------------------------------------------------------------------------- 1 | VERSION=2.0.1 2 | MAJOR=2 3 | MINOR=0 4 | PATCH=1 5 | ID=OPENMESH 6 | 7 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/VS2008OpenMesh.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/VS2008OpenMesh.sln -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/debian/changelog -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/debian/control -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/debian/copyright -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/debian/rules -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-2.0.1/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0.1/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/CHANGELOG -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/Doxyfile -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/decimater.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/decimater.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/doxy.config.in -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/history.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/history.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/html/acg_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/html/acg_icon.gif -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/html/acg_tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/html/acg_tabs.css -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/namespaces.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/namespaces.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/navigation.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/navigation.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/operations.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/operations.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/subdivider.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/subdivider.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/tutorial_01.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/tutorial_01.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/tutorial_02.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/tutorial_02.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/tutorial_03.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/tutorial_03.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/tutorial_04.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/tutorial_04.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/tutorial_05.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/tutorial_05.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/tutorial_06.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/tutorial_06.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/tutorial_07.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/tutorial_07.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/tutorial_07b.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/tutorial_07b.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/tutorial_08.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/tutorial_08.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/tutorial_09.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/tutorial_09.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/LICENSE/COPYING -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/LICENSE/LICENSEHEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/LICENSE/LICENSEHEADER -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/README -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/VERSION -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/VS2008OpenMesh.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/VS2008OpenMesh.sln -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/cmake/ACGCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/cmake/ACGCommon.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/cmake/ACGOutput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/cmake/ACGOutput.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/cmake/FindGLUT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/cmake/FindGLUT.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/debian/changelog -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/debian/control -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/debian/copyright -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/debian/rules -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/qmake/targets.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/qmake/targets.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-2.0/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.0/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/CHANGELOG -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/Doxyfile -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/changelog.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/changelog.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/decimater.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/decimater.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/doxy.config.in -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/html/acg_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/html/acg_icon.gif -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/namespaces.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/namespaces.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/navigation.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/navigation.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/operations.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/operations.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/subdivider.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/subdivider.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/tutorial_01.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/tutorial_01.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/tutorial_02.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/tutorial_02.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/tutorial_03.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/tutorial_03.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/tutorial_04.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/tutorial_04.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/tutorial_05.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/tutorial_05.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/tutorial_06.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/tutorial_06.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/tutorial_07.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/tutorial_07.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/tutorial_07b.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/tutorial_07b.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/tutorial_08.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/tutorial_08.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/tutorial_09.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/tutorial_09.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/LICENSE/COPYING -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/LICENSE/LICENSEHEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/LICENSE/LICENSEHEADER -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/README -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/VERSION: -------------------------------------------------------------------------------- 1 | VERSION=2.1.0 2 | MAJOR=2 3 | MINOR=1 4 | PATCH=0 5 | ID=OPENMESH 6 | 7 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/VS2008OpenMesh.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/VS2008OpenMesh.sln -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/cmake/ACGCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/cmake/ACGCommon.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/cmake/ACGOutput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/cmake/ACGOutput.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/cmake/FindGLUT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/cmake/FindGLUT.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/debian/changelog -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/debian/control -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/debian/copyright -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/debian/rules -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/qmake/targets.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/qmake/targets.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-2.1/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.1/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/CHANGELOG -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/Doxyfile -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/changelog.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/changelog.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/decimater.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/decimater.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/doxy.config.in -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/html/acg_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/html/acg_icon.gif -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/namespaces.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/namespaces.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/navigation.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/navigation.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/operations.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/operations.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/subdivider.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/subdivider.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/tutorial_01.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/tutorial_01.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/tutorial_02.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/tutorial_02.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/tutorial_03.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/tutorial_03.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/tutorial_04.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/tutorial_04.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/tutorial_05.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/tutorial_05.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/tutorial_06.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/tutorial_06.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/tutorial_07.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/tutorial_07.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/tutorial_07b.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/tutorial_07b.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/tutorial_08.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/tutorial_08.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/tutorial_09.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/tutorial_09.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/LICENSE/COPYING -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/LICENSE/LICENSEHEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/LICENSE/LICENSEHEADER -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/README -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/VERSION -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/VS2008OpenMesh.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/VS2008OpenMesh.sln -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/cmake/ACGCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/cmake/ACGCommon.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/cmake/ACGOutput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/cmake/ACGOutput.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/cmake/FindGLUT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/cmake/FindGLUT.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/debian/changelog -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/debian/control -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/debian/copyright -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/debian/rules -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/qmake/targets.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/qmake/targets.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-2.2/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.2/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/CHANGELOG -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/changelog.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/changelog.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/decimater.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/decimater.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/doxy.config.in -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/html/acg_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/html/acg_icon.gif -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/namespaces.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/namespaces.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/navigation.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/navigation.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/operations.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/operations.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/subdivider.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/subdivider.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/tutorial_01.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/tutorial_01.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/tutorial_02.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/tutorial_02.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/tutorial_03.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/tutorial_03.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/tutorial_04.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/tutorial_04.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/tutorial_05.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/tutorial_05.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/tutorial_06.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/tutorial_06.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/tutorial_07.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/tutorial_07.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/tutorial_07b.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/tutorial_07b.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/tutorial_08.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/tutorial_08.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/tutorial_09.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/tutorial_09.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/LICENSE/COPYING -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/LICENSE/LICENSEHEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/LICENSE/LICENSEHEADER -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/README -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/VERSION: -------------------------------------------------------------------------------- 1 | VERSION=2.3 2 | MAJOR=2 3 | MINOR=3 4 | PATCH=0 5 | ID=OPENMESH 6 | 7 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/VS2008OpenMesh.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/VS2008OpenMesh.sln -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/cmake/ACGCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/cmake/ACGCommon.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/cmake/ACGOutput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/cmake/ACGOutput.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/cmake/FindGLUT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/cmake/FindGLUT.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/debian/changelog -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/debian/control -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/debian/copyright -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/debian/rules -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/qmake/targets.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/qmake/targets.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-2.3/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.3/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/CHANGELOG -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/changelog.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/changelog.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/decimater.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/decimater.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/doxy.config.in -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/html/acg_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/html/acg_icon.gif -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/namespaces.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/namespaces.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/navigation.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/navigation.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/operations.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/operations.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/subdivider.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/subdivider.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/tutorial_01.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/tutorial_01.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/tutorial_02.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/tutorial_02.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/tutorial_03.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/tutorial_03.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/tutorial_04.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/tutorial_04.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/tutorial_05.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/tutorial_05.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/tutorial_06.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/tutorial_06.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/tutorial_07.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/tutorial_07.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/tutorial_07b.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/tutorial_07b.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/tutorial_08.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/tutorial_08.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/tutorial_09.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/tutorial_09.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/LICENSE/COPYING -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/LICENSE/LICENSEHEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/LICENSE/LICENSEHEADER -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/README -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/VERSION: -------------------------------------------------------------------------------- 1 | VERSION=2.4 2 | MAJOR=2 3 | MINOR=4 4 | PATCH=0 5 | ID=OPENMESH 6 | 7 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/VS2008OpenMesh.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/VS2008OpenMesh.sln -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/cmake/ACGCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/cmake/ACGCommon.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/cmake/ACGOutput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/cmake/ACGOutput.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/cmake/FindGLUT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/cmake/FindGLUT.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/debian/changelog -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/debian/control -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/debian/copyright -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/debian/rules -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/qmake/targets.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/qmake/targets.include -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-2.4/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-2.4/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/CHANGELOG -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/changelog.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/changelog.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/decimater.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/decimater.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/doxy.config.in -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/html/acg_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/html/acg_icon.gif -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/namespaces.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/namespaces.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/navigation.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/navigation.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/operations.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/operations.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/subdivider.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/subdivider.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/tutorial_01.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/tutorial_01.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/tutorial_02.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/tutorial_02.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/tutorial_03.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/tutorial_03.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/tutorial_04.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/tutorial_04.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/tutorial_05.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/tutorial_05.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/tutorial_06.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/tutorial_06.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/tutorial_07.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/tutorial_07.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/tutorial_07b.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/tutorial_07b.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/tutorial_08.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/tutorial_08.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/tutorial_09.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/tutorial_09.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/LICENSE/COPYING -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/LICENSE/LICENSEHEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/LICENSE/LICENSEHEADER -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/README -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/VERSION -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/cmake/ACGCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/cmake/ACGCommon.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/cmake/ACGOutput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/cmake/ACGOutput.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/cmake/FindGLUT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/cmake/FindGLUT.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/debian/changelog -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/debian/control -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/debian/copyright -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/debian/rules -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/qmake/targets.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/qmake/targets.include -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-3.0/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.0/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/CHANGELOG -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/changelog.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/changelog.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/decimater.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/decimater.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/doxy.config.in -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/html/acg_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/html/acg_icon.gif -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/namespaces.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/namespaces.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/navigation.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/navigation.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/operations.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/operations.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/subdivider.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/subdivider.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/tutorial_01.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/tutorial_01.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/tutorial_02.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/tutorial_02.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/tutorial_03.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/tutorial_03.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/tutorial_04.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/tutorial_04.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/tutorial_05.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/tutorial_05.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/tutorial_06.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/tutorial_06.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/tutorial_07.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/tutorial_07.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/tutorial_07b.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/tutorial_07b.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/tutorial_08.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/tutorial_08.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/tutorial_09.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/tutorial_09.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/LICENSE/COPYING -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/LICENSE/LICENSEHEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/LICENSE/LICENSEHEADER -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/README -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/VERSION: -------------------------------------------------------------------------------- 1 | VERSION=3.1 2 | MAJOR=3 3 | MINOR=1 4 | PATCH=0 5 | ID=OPENMESH 6 | 7 | -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/cmake/ACGCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/cmake/ACGCommon.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/cmake/ACGOutput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/cmake/ACGOutput.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/cmake/FindGLUT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/cmake/FindGLUT.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/debian/changelog -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/debian/control -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/debian/copyright -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/debian/rules -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/qmake/targets.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/qmake/targets.include -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-3.1/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.1/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/CHANGELOG -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/changelog.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/changelog.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/decimater.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/decimater.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/doxy.config.in -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/html/acg_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/html/acg_icon.gif -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/namespaces.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/namespaces.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/navigation.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/navigation.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/operations.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/operations.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/subdivider.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/subdivider.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/tutorial_01.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/tutorial_01.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/tutorial_02.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/tutorial_02.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/tutorial_03.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/tutorial_03.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/tutorial_04.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/tutorial_04.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/tutorial_05.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/tutorial_05.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/tutorial_06.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/tutorial_06.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/tutorial_07.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/tutorial_07.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/tutorial_07b.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/tutorial_07b.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/tutorial_08.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/tutorial_08.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/tutorial_09.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/tutorial_09.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/LICENSE/COPYING -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/LICENSE/LICENSEHEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/LICENSE/LICENSEHEADER -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/README -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/VERSION: -------------------------------------------------------------------------------- 1 | VERSION=3.2 2 | MAJOR=3 3 | MINOR=2 4 | PATCH=0 5 | ID=OPENMESH 6 | 7 | -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/cmake/ACGCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/cmake/ACGCommon.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/cmake/ACGOutput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/cmake/ACGOutput.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/cmake/FindGLUT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/cmake/FindGLUT.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/debian/changelog -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/debian/control -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/debian/copyright -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/debian/rules -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/qmake/targets.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/qmake/targets.include -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-3.2/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.2/templates/hh -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/.qmake.cache -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/CHANGELOG -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/ACGMakefile -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/CMakeLists.txt -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/changelog.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/changelog.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/decimater.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/decimater.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/doxy.config.in -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/html/acg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/html/acg_logo.png -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/mainpage.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/mesh.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/misc.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/namespaces.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/namespaces.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/navigation.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/navigation.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/operations.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/operations.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/smoother.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/smoother.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/subdivider.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/subdivider.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/tools.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/tutorial_01.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/tutorial_01.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/tutorial_02.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/tutorial_02.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/tutorial_03.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/tutorial_03.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/tutorial_04.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/tutorial_04.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/tutorial_05.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/tutorial_05.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/tutorial_06.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/tutorial_06.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/tutorial_07.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/tutorial_07.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/tutorial_07b.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/tutorial_07b.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/tutorial_08.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/tutorial_08.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/tutorial_09.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/tutorial_09.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/Doc/vdpm.docu -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/LICENSE/COPYING -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/LICENSE/LICENSEHEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/LICENSE/LICENSEHEADER -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/OpenMesh.pro -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/README -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/VERSION -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/cmake/ACGCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/cmake/ACGCommon.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/cmake/ACGOutput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/cmake/ACGOutput.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/cmake/FindGLUT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/cmake/FindGLUT.cmake -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/debian/changelog -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/debian/control -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/debian/copyright -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/debian/rules -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/qmake/all.include -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/qmake/targets.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/qmake/targets.include -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/release.howto -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/src/Python/Mesh.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/src/Python/Mesh.hh -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/src/Python/Vector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/src/Python/Vector.hh -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/templates/cc -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/templates/cpp -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/templates/h -------------------------------------------------------------------------------- /tags/OpenMesh-3.3/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/tags/OpenMesh-3.3/templates/hh -------------------------------------------------------------------------------- /trunk/.qmake.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/.qmake.cache -------------------------------------------------------------------------------- /trunk/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/ACGMakefile -------------------------------------------------------------------------------- /trunk/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/CHANGELOG -------------------------------------------------------------------------------- /trunk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/CMakeLists.txt -------------------------------------------------------------------------------- /trunk/Doc/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/ACGMakefile -------------------------------------------------------------------------------- /trunk/Doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/CMakeLists.txt -------------------------------------------------------------------------------- /trunk/Doc/Concepts/MeshItems.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Concepts/MeshItems.hh -------------------------------------------------------------------------------- /trunk/Doc/Concepts/MeshKernel.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Concepts/MeshKernel.hh -------------------------------------------------------------------------------- /trunk/Doc/Examples/BaseExporter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/BaseExporter.hh -------------------------------------------------------------------------------- /trunk/Doc/Examples/BaseImporter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/BaseImporter.hh -------------------------------------------------------------------------------- /trunk/Doc/Examples/BaseReader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/BaseReader.hh -------------------------------------------------------------------------------- /trunk/Doc/Examples/adasub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/adasub.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/build-trimesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/build-trimesh.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/circulators.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/circulators.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/decimater.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/decimater.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/draw_normals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/draw_normals.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/iterators.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/iterators.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/mesh_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/mesh_io.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/mymesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/mymesh.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/nav_code1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/nav_code1.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/nav_code2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/nav_code2.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/nav_code3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/nav_code3.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/nav_code4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/nav_code4.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/nav_code4a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/nav_code4a.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/nav_code_to_from.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/nav_code_to_from.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/python_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/python_tutorial.py -------------------------------------------------------------------------------- /trunk/Doc/Examples/traits0.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/traits0.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/traits1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/traits1.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/traits2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/traits2.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/traits3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/traits3.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/traits4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/traits4.cc -------------------------------------------------------------------------------- /trunk/Doc/Examples/traits5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Examples/traits5.cc -------------------------------------------------------------------------------- /trunk/Doc/Tutorial/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Tutorial/ACGMakefile -------------------------------------------------------------------------------- /trunk/Doc/Tutorial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/Tutorial/CMakeLists.txt -------------------------------------------------------------------------------- /trunk/Doc/changelog.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/changelog.docu -------------------------------------------------------------------------------- /trunk/Doc/decimater.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/decimater.docu -------------------------------------------------------------------------------- /trunk/Doc/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/doxy.config.in -------------------------------------------------------------------------------- /trunk/Doc/html/acg_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/html/acg_footer.html -------------------------------------------------------------------------------- /trunk/Doc/html/acg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/html/acg_logo.png -------------------------------------------------------------------------------- /trunk/Doc/images/acg_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/acg_logo_small.png -------------------------------------------------------------------------------- /trunk/Doc/images/class-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/class-hierarchy.png -------------------------------------------------------------------------------- /trunk/Doc/images/collapse_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/collapse_info.png -------------------------------------------------------------------------------- /trunk/Doc/images/diagrams.sxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/diagrams.sxi -------------------------------------------------------------------------------- /trunk/Doc/images/inheritance.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/inheritance.fig -------------------------------------------------------------------------------- /trunk/Doc/images/inheritance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/inheritance.gif -------------------------------------------------------------------------------- /trunk/Doc/images/iomanager.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/iomanager.gif -------------------------------------------------------------------------------- /trunk/Doc/images/iomanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/iomanager.png -------------------------------------------------------------------------------- /trunk/Doc/images/mesh.collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/mesh.collapse.png -------------------------------------------------------------------------------- /trunk/Doc/images/mesh.flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/mesh.flip.png -------------------------------------------------------------------------------- /trunk/Doc/images/mesh.inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/mesh.inner.png -------------------------------------------------------------------------------- /trunk/Doc/images/mesh.inout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/mesh.inout.png -------------------------------------------------------------------------------- /trunk/Doc/images/mesh.normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/mesh.normal.png -------------------------------------------------------------------------------- /trunk/Doc/images/mesh.opp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/mesh.opp.png -------------------------------------------------------------------------------- /trunk/Doc/images/mesh.outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/mesh.outer.png -------------------------------------------------------------------------------- /trunk/Doc/images/mesh.to.from.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/mesh.to.from.png -------------------------------------------------------------------------------- /trunk/Doc/images/om-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/om-format.png -------------------------------------------------------------------------------- /trunk/Doc/images/src/iomanager.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/src/iomanager.tex -------------------------------------------------------------------------------- /trunk/Doc/images/src/mesh.flip.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/src/mesh.flip.tex -------------------------------------------------------------------------------- /trunk/Doc/images/src/mesh.inner.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/src/mesh.inner.tex -------------------------------------------------------------------------------- /trunk/Doc/images/src/mesh.io.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/src/mesh.io.tex -------------------------------------------------------------------------------- /trunk/Doc/images/src/mesh.normal.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/src/mesh.normal.tex -------------------------------------------------------------------------------- /trunk/Doc/images/src/mesh.opp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/src/mesh.opp.tex -------------------------------------------------------------------------------- /trunk/Doc/images/src/mesh.outer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/images/src/mesh.outer.tex -------------------------------------------------------------------------------- /trunk/Doc/mainpage.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/mainpage.docu -------------------------------------------------------------------------------- /trunk/Doc/mesh.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/mesh.docu -------------------------------------------------------------------------------- /trunk/Doc/misc.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/misc.docu -------------------------------------------------------------------------------- /trunk/Doc/namespaces.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/namespaces.docu -------------------------------------------------------------------------------- /trunk/Doc/navigation.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/navigation.docu -------------------------------------------------------------------------------- /trunk/Doc/operations.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/operations.docu -------------------------------------------------------------------------------- /trunk/Doc/python_tutorial.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/python_tutorial.docu -------------------------------------------------------------------------------- /trunk/Doc/smoother.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/smoother.docu -------------------------------------------------------------------------------- /trunk/Doc/subdivider.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/subdivider.docu -------------------------------------------------------------------------------- /trunk/Doc/tools.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/tools.docu -------------------------------------------------------------------------------- /trunk/Doc/tutorial_01.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/tutorial_01.docu -------------------------------------------------------------------------------- /trunk/Doc/tutorial_02.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/tutorial_02.docu -------------------------------------------------------------------------------- /trunk/Doc/tutorial_03.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/tutorial_03.docu -------------------------------------------------------------------------------- /trunk/Doc/tutorial_04.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/tutorial_04.docu -------------------------------------------------------------------------------- /trunk/Doc/tutorial_05.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/tutorial_05.docu -------------------------------------------------------------------------------- /trunk/Doc/tutorial_06.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/tutorial_06.docu -------------------------------------------------------------------------------- /trunk/Doc/tutorial_07.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/tutorial_07.docu -------------------------------------------------------------------------------- /trunk/Doc/tutorial_07b.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/tutorial_07b.docu -------------------------------------------------------------------------------- /trunk/Doc/tutorial_08.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/tutorial_08.docu -------------------------------------------------------------------------------- /trunk/Doc/tutorial_09.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/tutorial_09.docu -------------------------------------------------------------------------------- /trunk/Doc/tutorial_build.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/tutorial_build.docu -------------------------------------------------------------------------------- /trunk/Doc/tutorial_main.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/tutorial_main.docu -------------------------------------------------------------------------------- /trunk/Doc/vdpm.docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/Doc/vdpm.docu -------------------------------------------------------------------------------- /trunk/LICENSE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/LICENSE/COPYING -------------------------------------------------------------------------------- /trunk/LICENSE/COPYING.EXCEPTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/LICENSE/COPYING.EXCEPTIONS -------------------------------------------------------------------------------- /trunk/LICENSE/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/LICENSE/COPYING.LESSER -------------------------------------------------------------------------------- /trunk/LICENSE/LICENSEHEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/LICENSE/LICENSEHEADER -------------------------------------------------------------------------------- /trunk/OpenMesh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/OpenMesh.pro -------------------------------------------------------------------------------- /trunk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/README -------------------------------------------------------------------------------- /trunk/VERSION: -------------------------------------------------------------------------------- 1 | VERSION=3.4 2 | MAJOR=3 3 | MINOR=4 4 | PATCH=0 5 | ID=OPENMESH 6 | 7 | -------------------------------------------------------------------------------- /trunk/cmake/ACGCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/cmake/ACGCommon.cmake -------------------------------------------------------------------------------- /trunk/cmake/ACGCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/cmake/ACGCompiler.cmake -------------------------------------------------------------------------------- /trunk/cmake/ACGDoxygen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/cmake/ACGDoxygen.cmake -------------------------------------------------------------------------------- /trunk/cmake/ACGOutput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/cmake/ACGOutput.cmake -------------------------------------------------------------------------------- /trunk/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /trunk/cmake/FindGLUT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/cmake/FindGLUT.cmake -------------------------------------------------------------------------------- /trunk/cmake/FindGoogleTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/cmake/FindGoogleTest.cmake -------------------------------------------------------------------------------- /trunk/cmake/FindOpenMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/cmake/FindOpenMP.cmake -------------------------------------------------------------------------------- /trunk/cmake/FindOpenMesh.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/cmake/FindOpenMesh.cmake -------------------------------------------------------------------------------- /trunk/cmake/OpenMeshPackage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/cmake/OpenMeshPackage.cmake -------------------------------------------------------------------------------- /trunk/cmake/fixbundle.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/cmake/fixbundle.cmake.in -------------------------------------------------------------------------------- /trunk/cmake/fixbundle.cmake.win.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/cmake/fixbundle.cmake.win.in -------------------------------------------------------------------------------- /trunk/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/debian/changelog -------------------------------------------------------------------------------- /trunk/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /trunk/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/debian/control -------------------------------------------------------------------------------- /trunk/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/debian/copyright -------------------------------------------------------------------------------- /trunk/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/debian/rules -------------------------------------------------------------------------------- /trunk/qmake/all.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/qmake/all.include -------------------------------------------------------------------------------- /trunk/qmake/architecture.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/qmake/architecture.include -------------------------------------------------------------------------------- /trunk/qmake/compiler.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/qmake/compiler.include -------------------------------------------------------------------------------- /trunk/qmake/functions.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/qmake/functions.include -------------------------------------------------------------------------------- /trunk/qmake/packages/packages.Darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/qmake/packages/packages.Darwin -------------------------------------------------------------------------------- /trunk/qmake/packages/packages.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/qmake/packages/packages.Linux -------------------------------------------------------------------------------- /trunk/qmake/targets.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/qmake/targets.include -------------------------------------------------------------------------------- /trunk/release.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/release.howto -------------------------------------------------------------------------------- /trunk/src/OpenMesh/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/OpenMesh/ACGMakefile -------------------------------------------------------------------------------- /trunk/src/OpenMesh/ACGMakefile.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/OpenMesh/ACGMakefile.proj -------------------------------------------------------------------------------- /trunk/src/OpenMesh/Core/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/OpenMesh/Core/ACGMakefile -------------------------------------------------------------------------------- /trunk/src/OpenMesh/Core/Core.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/OpenMesh/Core/Core.pro -------------------------------------------------------------------------------- /trunk/src/OpenMesh/Core/IO/MeshIO.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/OpenMesh/Core/IO/MeshIO.hh -------------------------------------------------------------------------------- /trunk/src/OpenMesh/Core/IO/SR_rbo.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/OpenMesh/Core/IO/SR_rbo.hh -------------------------------------------------------------------------------- /trunk/src/OpenMesh/Tools/ACGMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/OpenMesh/Tools/ACGMakefile -------------------------------------------------------------------------------- /trunk/src/OpenMesh/Tools/Tools.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/OpenMesh/Tools/Tools.pro -------------------------------------------------------------------------------- /trunk/src/Python/Bindings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Python/Bindings.cc -------------------------------------------------------------------------------- /trunk/src/Python/Bindings.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Python/Bindings.hh -------------------------------------------------------------------------------- /trunk/src/Python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Python/CMakeLists.txt -------------------------------------------------------------------------------- /trunk/src/Python/Circulator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Python/Circulator.hh -------------------------------------------------------------------------------- /trunk/src/Python/Example/Example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Python/Example/Example.cc -------------------------------------------------------------------------------- /trunk/src/Python/InputOutput.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Python/InputOutput.hh -------------------------------------------------------------------------------- /trunk/src/Python/Iterator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Python/Iterator.hh -------------------------------------------------------------------------------- /trunk/src/Python/Mesh.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Python/Mesh.hh -------------------------------------------------------------------------------- /trunk/src/Python/PropertyManager.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Python/PropertyManager.hh -------------------------------------------------------------------------------- /trunk/src/Python/Vector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Python/Vector.hh -------------------------------------------------------------------------------- /trunk/src/Unittests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Unittests/CMakeLists.txt -------------------------------------------------------------------------------- /trunk/src/Unittests/fill_props.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Unittests/fill_props.hh -------------------------------------------------------------------------------- /trunk/src/Unittests/generate_cube.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Unittests/generate_cube.hh -------------------------------------------------------------------------------- /trunk/src/Unittests/int2roman.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Unittests/int2roman.hh -------------------------------------------------------------------------------- /trunk/src/Unittests/unittests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/src/Unittests/unittests.cc -------------------------------------------------------------------------------- /trunk/templates/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/templates/cc -------------------------------------------------------------------------------- /trunk/templates/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/templates/cpp -------------------------------------------------------------------------------- /trunk/templates/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/templates/h -------------------------------------------------------------------------------- /trunk/templates/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/OpenMesh/HEAD/trunk/templates/hh --------------------------------------------------------------------------------