├── .travis.yml ├── .travis_old.yml ├── CMakeLists.txt ├── README ├── appveyor.yml ├── cmake ├── FindASSIMP.cmake ├── FindFFmpeg.cmake ├── FindGLEW.cmake ├── FindIqa.cmake ├── FindJpeg.cmake ├── FindOpenMesh.cmake ├── FindQGLViewer.cmake ├── FindXercesC.cmake ├── TargetDoc.cmake └── msvc │ ├── kit.cmake │ ├── kit_vs2010-64_v01.cmake │ ├── kit_vs2012-64_v07.cmake │ ├── kit_vs2015-64_v01-AppVeyor.cmake │ └── kit_vs2015-64_v01.cmake ├── doc ├── git │ ├── Git-GitHub source code management.pdf │ └── readme.txt ├── readme_EN_Linux.txt ├── readme_EN_Mac_OS_X.txt ├── readme_EN_VMware.txt ├── readme_EN_Windows_VS2008.txt ├── readme_EN_Windows_VS2008_x64.txt ├── readme_EN_Windows_VS2010.txt ├── readme_EN_Windows_VS2010_x64.txt ├── readme_FR_Linux.txt ├── readme_FR_Mac_OS_X.txt ├── readme_FR_VMware.txt ├── readme_FR_Windows_VS2008.txt ├── readme_FR_Windows_VS2008_x64.txt ├── readme_FR_Windows_VS2010.txt ├── readme_FR_Windows_VS2010_x64.txt ├── readme__NEW__Windows_VS2015_x64.txt └── tutorials │ ├── EN - MEPP component developer guide.pdf │ ├── FR - MEPP component developer guide.pdf │ └── readme.txt ├── doxy.config.in ├── externals ├── ffmpeg │ ├── visual studio x64 │ │ └── ffmpeg-64.rar │ └── visual studio x86 │ │ └── ffmpeg-32.rar └── xiot-0.9.0 │ ├── CMakeLists.txt │ ├── CMakeModules │ ├── FindXercesC.cmake │ └── TargetDoc.cmake │ ├── COPYING │ ├── INSTALL │ ├── README │ ├── doc │ ├── README_SDK9 │ ├── tutorials │ │ └── ogre │ │ │ ├── resources │ │ │ ├── materials │ │ │ │ └── default.material │ │ │ └── models │ │ │ │ ├── cube.mesh │ │ │ │ └── sphere.mesh │ │ │ └── src │ │ │ ├── ArgumentHelper.cpp │ │ │ ├── ArgumentHelper.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ExampleApplication.h │ │ │ ├── ExampleFrameListener.h │ │ │ ├── cfg │ │ │ ├── Plugins.cfg.in │ │ │ ├── ogre.cfg.in │ │ │ └── resources.cfg.in │ │ │ ├── cmake │ │ │ ├── FindOGRE.cmake │ │ │ └── FindOIS.cmake │ │ │ ├── main.cpp │ │ │ ├── step1 │ │ │ ├── TutorialApplication.cpp │ │ │ ├── TutorialApplication.h │ │ │ └── main.cpp │ │ │ ├── step2 │ │ │ ├── ArgumentHelper.cpp │ │ │ ├── ArgumentHelper.h │ │ │ ├── OgreNodeHandler.cpp │ │ │ ├── OgreNodeHandler.h │ │ │ ├── TutorialApplication.cpp │ │ │ ├── TutorialApplication.h │ │ │ └── main.cpp │ │ │ ├── step3 │ │ │ ├── GeomUtils.cpp │ │ │ ├── GeomUtils.h │ │ │ ├── OgreNodeHandler.cpp │ │ │ ├── OgreNodeHandler.h │ │ │ ├── TutorialApplication.cpp │ │ │ ├── TutorialApplication.h │ │ │ └── main.cpp │ │ │ └── step4 │ │ │ ├── GeomUtils.cpp │ │ │ ├── GeomUtils.h │ │ │ ├── IndexedGeometry.cpp │ │ │ ├── IndexedGeometry.h │ │ │ ├── IndexedGeometry_dfki.cpp │ │ │ ├── OgreNodeHandler.cpp │ │ │ ├── OgreNodeHandler.h │ │ │ ├── TutorialApplication.cpp │ │ │ ├── TutorialApplication.h │ │ │ └── main.cpp │ ├── vtkX3DImporter_screen.jpg │ └── x3d_in_paraview.jpg │ ├── doxy.config.in │ ├── examples │ ├── Argument_helper.cc │ ├── Argument_helper.cpp │ ├── Argument_helper.h │ ├── CMakeLists.txt │ ├── README │ ├── X3DTest.cxx │ ├── X3DTest.h │ ├── main.cxx │ ├── vtkX3DExporterGeneric.cxx │ ├── vtkX3DExporterGeneric.h │ ├── vtkX3DImporter.cpp │ ├── vtkX3DImporter.h │ ├── vtkX3DIndexedGeometrySource.cpp │ ├── vtkX3DIndexedGeometrySource.h │ ├── vtkX3DLoader.cpp │ ├── vtkX3DNodeHandler.cpp │ ├── vtkX3DNodeHandler.h │ └── vtkX3DRewriter.cpp │ ├── include │ └── xiot │ │ ├── FIConfig.h │ │ ├── FIConstants.h │ │ ├── FIContentHandler.h │ │ ├── FIDecoder.h │ │ ├── FIEncoder.h │ │ ├── FIEncodingAlgorithms.h │ │ ├── FIParserVocabulary.h │ │ ├── FISAXParser.h │ │ ├── FITypes.h │ │ ├── X3DAttributes.h │ │ ├── X3DDataTypeFactory.h │ │ ├── X3DDefaultNodeHandler.h │ │ ├── X3DFIAttributes.h │ │ ├── X3DFICompressionTools.h │ │ ├── X3DFIEncoder.h │ │ ├── X3DFIEncodingAlgorithms.h │ │ ├── X3DFILoader.h │ │ ├── X3DLoader.h │ │ ├── X3DNodeHandler.h │ │ ├── X3DParseException.h │ │ ├── X3DParserVocabulary.h │ │ ├── X3DSwitch.h │ │ ├── X3DTypes.h │ │ ├── X3DWriter.h │ │ ├── X3DWriterFI.h │ │ ├── X3DWriterFIHelper.h │ │ ├── X3DWriterXML.h │ │ ├── X3DXMLAttributes.h │ │ ├── X3DXMLLoader.h │ │ └── XIOTConfig.h │ ├── plugins │ ├── CMakeLists.txt │ ├── README │ ├── X3DReader.xml │ ├── X3DReaderGUI.xml │ ├── vtkX3DSource.cxx │ └── vtkX3DSource.h │ ├── src │ ├── CMakeLists.txt │ ├── CMakeLists.txt.org │ ├── FIContentHandler.cpp │ ├── FIDecoder.cpp │ ├── FIEncoder.cpp │ ├── FIEncodingAlgorithms.cpp │ ├── FIParserVocabulary.cpp │ ├── FISAXParser.cpp │ ├── X3DAttributes.cpp │ ├── X3DDataTypeFactory.cpp │ ├── X3DDefaultNodeHandler.cpp │ ├── X3DFIAttributes.cpp │ ├── X3DFICompressionTools.cpp │ ├── X3DFIEncoder.cpp │ ├── X3DFIEncodingAlgorithms.cpp │ ├── X3DFILoader.cpp │ ├── X3DLoader.cpp │ ├── X3DParseException.cpp │ ├── X3DParserVocabulary.cpp │ ├── X3DSwitch.cpp │ ├── X3DTypes.cpp │ ├── X3DWriter.cpp │ ├── X3DWriterFI.cpp │ ├── X3DWriterXML.cpp │ ├── X3DXMLAttributesExpatImpl.cpp │ ├── X3DXMLAttributesXercesImpl.cpp │ ├── X3DXMLLoaderExpatImpl.cpp │ ├── X3DXMLLoaderXercesImpl.cpp │ ├── conf │ │ ├── vtkCMakeLists.txt.in │ │ ├── vtkFIConfig.h │ │ └── vtkXIOTConfig.h.in │ └── gen │ │ └── sourceGenerator.cpp │ └── tests │ ├── Argument_helper.cpp │ ├── Argument_helper.h │ ├── CMakeLists.txt │ ├── IOTest.cpp │ ├── X3DLogNodeHandler.cpp │ ├── X3DLogNodeHandler.h │ ├── createEventLog.cpp │ ├── dist_test │ ├── CMakeLists.txt │ └── dist_test.cpp │ ├── fitest.cpp │ ├── parserPerformance.cpp │ ├── shapeCounter.cpp │ └── simpleTest.cpp ├── licence_gpl_v3.txt ├── licence_gpl_v3_fr.txt ├── scripts ├── cat.exe ├── cat.sh └── gnu_cat.bat └── src ├── components ├── Analysis │ └── Curvature │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ └── use_components.txt │ │ ├── doxy.config.in │ │ ├── licence_gpl_v3.txt │ │ ├── licence_gpl_v3_fr.txt │ │ └── src │ │ ├── Curvature_Component.cpp │ │ ├── Curvature_Component.h │ │ ├── Curvature_Items.h │ │ ├── Curvature_Polyhedron.h │ │ ├── dialSettings.cpp │ │ ├── dialSettings.hxx │ │ ├── dialSettings.ui │ │ ├── extract_Vpropres.cpp │ │ ├── extract_Vpropres.h │ │ ├── mepp_component_Curvature_plugin.cpp │ │ └── mepp_component_Curvature_plugin.hxx ├── Compression │ └── Compression_Valence │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ └── use_components.txt │ │ ├── doxy.config.in │ │ ├── licence_gpl_v3.txt │ │ ├── licence_gpl_v3_fr.txt │ │ └── src │ │ ├── Compression_Valence_Basemesh_builder.h │ │ ├── Compression_Valence_Common.h │ │ ├── Compression_Valence_Component.cpp │ │ ├── Compression_Valence_Component.h │ │ ├── Compression_Valence_Items.h │ │ ├── Compression_Valence_Polyhedron.h │ │ ├── Matrix3X3.h │ │ ├── Processing_Kai.cpp │ │ ├── Processing_Kai.h │ │ ├── Processing_Types.h │ │ ├── arithmetic_codec.cpp │ │ ├── arithmetic_codec.h │ │ ├── dialSettingsComp.cpp │ │ ├── dialSettingsComp.hxx │ │ ├── dialSettingsComp.ui │ │ ├── dialSettingsDecomp.cpp │ │ ├── dialSettingsDecomp.hxx │ │ ├── dialSettingsDecomp.ui │ │ ├── dialSettingsJCW.cpp │ │ ├── dialSettingsJCW.hxx │ │ ├── dialSettingsJCW.ui │ │ ├── mepp_component_Compression_Valence_plugin.cpp │ │ └── mepp_component_Compression_Valence_plugin.hxx ├── Distance │ ├── MSDM │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ └── use_components.txt │ │ ├── doxy.config.in │ │ ├── licence_gpl_v3.txt │ │ ├── licence_gpl_v3_fr.txt │ │ └── src │ │ │ ├── MSDM_Component.cpp │ │ │ ├── MSDM_Component.h │ │ │ ├── MSDM_Items.h │ │ │ ├── MSDM_Polyhedron.h │ │ │ ├── dialSettings.cpp │ │ │ ├── dialSettings.hxx │ │ │ ├── dialSettings.ui │ │ │ ├── mepp_component_MSDM_plugin.cpp │ │ │ └── mepp_component_MSDM_plugin.hxx │ └── MSDM2 │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ └── use_components.txt │ │ ├── doxy.config.in │ │ ├── licence_gpl_v3.txt │ │ ├── licence_gpl_v3_fr.txt │ │ ├── readme_EN_IMPORTANT.txt │ │ ├── readme_FR_IMPORTANT.txt │ │ └── src │ │ ├── MSDM2_Component.cpp │ │ ├── MSDM2_Component.h │ │ ├── MSDM2_Items.h │ │ ├── MSDM2_Polyhedron.h │ │ ├── dialSettings.cpp │ │ ├── dialSettings.hxx │ │ ├── dialSettings.ui │ │ ├── mepp_component_MSDM2_plugin.cpp │ │ └── mepp_component_MSDM2_plugin.hxx ├── Examples │ └── CGAL_Example │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ └── use_components.txt │ │ ├── doxy.config.in │ │ ├── licence_gpl_v3.txt │ │ ├── licence_gpl_v3_fr.txt │ │ └── src │ │ ├── CGAL_Example_Component.cpp │ │ ├── CGAL_Example_Component.h │ │ ├── CGAL_Example_Items.h │ │ ├── CGAL_Example_Polyhedron.h │ │ ├── dialSettings_CGAL_Example.cpp │ │ ├── dialSettings_CGAL_Example.hxx │ │ ├── dialSettings_CGAL_Example.ui │ │ ├── mepp_component_CGAL_Example_plugin.cpp │ │ └── mepp_component_CGAL_Example_plugin.hxx ├── Remeshing │ └── Canonical │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ └── use_components.txt │ │ ├── doxy.config.in │ │ ├── licence_gpl_v3.txt │ │ ├── licence_gpl_v3_fr.txt │ │ └── src │ │ ├── Canonical_Component.cpp │ │ ├── Canonical_Component.h │ │ ├── Canonical_Items.h │ │ ├── Canonical_Polyhedron.h │ │ ├── dialSettings.cpp │ │ ├── dialSettings.hxx │ │ ├── dialSettings.ui │ │ ├── mepp_component_Canonical_plugin.cpp │ │ └── mepp_component_Canonical_plugin.hxx ├── Segmentation │ └── VSA │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ └── use_components.txt │ │ ├── doxy.config.in │ │ ├── licence_gpl_v3.txt │ │ ├── licence_gpl_v3_fr.txt │ │ └── src │ │ ├── VSA_Component.cpp │ │ ├── VSA_Component.h │ │ ├── VSA_Items.h │ │ ├── VSA_Polyhedron.h │ │ ├── dialSettings.cpp │ │ ├── dialSettings.hxx │ │ ├── dialSettings.ui │ │ ├── mepp_component_VSA_plugin.cpp │ │ └── mepp_component_VSA_plugin.hxx ├── Tools │ ├── Boolean_Operations │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ └── use_components.txt │ │ ├── doxy.config.in │ │ ├── licence_gpl_v3.txt │ │ ├── licence_gpl_v3_fr.txt │ │ └── src │ │ │ ├── BoolPolyhedra.h │ │ │ ├── Boolean_Operations_Component.cpp │ │ │ ├── Boolean_Operations_Component.h │ │ │ ├── Boolean_Operations_Definitions.h │ │ │ ├── Boolean_Operations_Items.h │ │ │ ├── Boolean_Operations_Polyhedron.h │ │ │ ├── Boolean_Operations_triangulation.h │ │ │ ├── CPolyhedron_from_polygon_builder_3.h │ │ │ ├── Time_measure.h │ │ │ ├── mepp_component_Boolean_Operations_plugin.cpp │ │ │ └── mepp_component_Boolean_Operations_plugin.hxx │ ├── Various_Processing │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ └── use_components.txt │ │ ├── doxy.config.in │ │ ├── licence_gpl_v3.txt │ │ ├── licence_gpl_v3_fr.txt │ │ └── src │ │ │ ├── Various_Processing_Component.cpp │ │ │ ├── Various_Processing_Component.h │ │ │ ├── Various_Processing_Items.h │ │ │ ├── Various_Processing_Polyhedron.h │ │ │ ├── Various_Processing_Types.h │ │ │ ├── dialSettings_Various_Processing_Noise.cpp │ │ │ ├── dialSettings_Various_Processing_Noise.hxx │ │ │ ├── dialSettings_Various_Processing_Noise.ui │ │ │ ├── dialSettings_Various_Processing_Quantization.cpp │ │ │ ├── dialSettings_Various_Processing_Quantization.hxx │ │ │ ├── dialSettings_Various_Processing_Quantization.ui │ │ │ ├── dialSettings_Various_Processing_Rotation.cpp │ │ │ ├── dialSettings_Various_Processing_Rotation.hxx │ │ │ ├── dialSettings_Various_Processing_Rotation.ui │ │ │ ├── dialSettings_Various_Processing_Simplification.cpp │ │ │ ├── dialSettings_Various_Processing_Simplification.hxx │ │ │ ├── dialSettings_Various_Processing_Simplification.ui │ │ │ ├── dialSettings_Various_Processing_Smoothing.cpp │ │ │ ├── dialSettings_Various_Processing_Smoothing.hxx │ │ │ ├── dialSettings_Various_Processing_Smoothing.ui │ │ │ ├── dialSettings_Various_Processing_Subdivision.cpp │ │ │ ├── dialSettings_Various_Processing_Subdivision.hxx │ │ │ ├── dialSettings_Various_Processing_Subdivision.ui │ │ │ ├── dialSettings_Various_Processing_Translation.cpp │ │ │ ├── dialSettings_Various_Processing_Translation.hxx │ │ │ ├── dialSettings_Various_Processing_Translation.ui │ │ │ ├── dialSettings_Various_Processing_Uniform_Scaling.cpp │ │ │ ├── dialSettings_Various_Processing_Uniform_Scaling.hxx │ │ │ ├── dialSettings_Various_Processing_Uniform_Scaling.ui │ │ │ ├── mepp_component_Various_Processing_plugin.cpp │ │ │ └── mepp_component_Various_Processing_plugin.hxx │ └── Various_Tools │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ └── use_components.txt │ │ ├── doxy.config.in │ │ ├── licence_gpl_v3.txt │ │ ├── licence_gpl_v3_fr.txt │ │ └── src │ │ ├── Various_Tools_Component.cpp │ │ ├── Various_Tools_Component.h │ │ ├── Various_Tools_Items.h │ │ ├── Various_Tools_Polyhedron.h │ │ ├── mepp_component_Various_Tools_plugin.cpp │ │ └── mepp_component_Various_Tools_plugin.hxx └── Watermarking │ └── add_components_here └── mepp ├── Library ├── Polyhedron_geometric_global_measure_3.h ├── Polyhedron_geometric_transformation_3.h └── Polyhedron_topological_transformation_3.h ├── Pictures ├── Icons │ ├── _Antialiasing.png │ ├── _Axis.png │ ├── _BackgroundColor.png │ ├── _BoundingBox.png │ ├── _BoundingBoxOnMove.png │ ├── _CenterAll.png │ ├── _Clipboard.png │ ├── _CopyViewpoint.png │ ├── _CoupleRotations.png │ ├── _Culling.png │ ├── _DL.png │ ├── _Delete.png │ ├── _EdgeColor.png │ ├── _Edges.png │ ├── _FPS.png │ ├── _FaceColor.png │ ├── _FaceColorMode.png │ ├── _First.png │ ├── _Grid.png │ ├── _Last.png │ ├── _Lighting.png │ ├── _Material.png │ ├── _Next.png │ ├── _Normals.png │ ├── _Params.png │ ├── _PasteViewpoint.png │ ├── _PointColor.png │ ├── _Previous.png │ ├── _RenderFill.png │ ├── _ReverseStart.png │ ├── _ReverseStartLoop.png │ ├── _Screenshot.png │ ├── _ScreenshotSequence.png │ ├── _ShowAll.png │ ├── _Smoothing.png │ ├── _Start.png │ ├── _StartLoop.png │ ├── _Stop.png │ ├── _SuperimposeEdges.png │ ├── _SuperimposeSpheres.png │ ├── _SuperimposeVertices.png │ ├── _VBO.png │ ├── _VertexColorMode.png │ ├── _Vertices.png │ ├── copy.png │ ├── cut.png │ ├── new.png │ ├── open.png │ ├── paste.png │ ├── save.png │ ├── textureEnable.png │ ├── textureOpen.png │ ├── textureSettings.png │ └── textureToColor.png ├── MEPP.png ├── cgal.png ├── mepp.icns ├── mepp.ico └── mepp.rc ├── Polyhedron ├── Correct_CGAL_Structure.h ├── Polyhedron_ASSIMP_CGALImporter.h ├── Polyhedron_Builder.h ├── Polyhedron_Copy.h ├── Polyhedron_OBJ_CGALImporter.h ├── Polyhedron_OFF_CGALImporter.h ├── Polyhedron_PLY_CGALImporter.h ├── Polyhedron_SMF_CGALImporter.h ├── Polyhedron_X3D_CGALImporter.h ├── X3D_IFS_old.h ├── X3D_old.cpp ├── X3D_old.h ├── mesh.cpp ├── mesh.h ├── ply.cpp ├── ply.h ├── polyhedron.h ├── polyhedron_enriched_polyhedron.h ├── polyhedron_shared_items.h ├── rply.c └── rply.h ├── QTFFmpegWrapper ├── QVideoDecoder.cpp ├── QVideoDecoder.h ├── QVideoEncoder.cpp ├── QVideoEncoder.h ├── README └── ffmpeg.h ├── Tools ├── Tools_Polyhedron.h ├── Tools_Polyhedron_decorator.h ├── Tools_Polyhedron_memory_builder.h ├── Tools_Polyhedron_subdivision.h ├── Tools_Polyhedron_subdivision_rules.h ├── Tools_quad-triangle.h └── Tools_sqrt3.h ├── _enrichment_.in ├── polyhedron_enrichment_define.h.in ├── polyhedron_enrichment_facet.h.in ├── polyhedron_enrichment_halfedge.h.in ├── polyhedron_enrichment_include.h.in ├── polyhedron_enrichment_polyhedron.h.in └── polyhedron_enrichment_vertex.h.in ├── main.cpp ├── mainwindow.cpp ├── mainwindow.hxx ├── mainwindow.ui ├── material.h ├── mdiarea.cpp ├── mdiarea.hxx ├── mepp.qrc ├── mepp_action.hxx ├── mepp_component.h ├── mepp_component_plugin_interface.h ├── mepp_config.h.in ├── scene.cpp ├── scene.h ├── viewer.cpp └── viewer.hxx /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis_old.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/.travis_old.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/README -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/FindASSIMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/FindASSIMP.cmake -------------------------------------------------------------------------------- /cmake/FindFFmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/FindFFmpeg.cmake -------------------------------------------------------------------------------- /cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /cmake/FindIqa.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/FindIqa.cmake -------------------------------------------------------------------------------- /cmake/FindJpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/FindJpeg.cmake -------------------------------------------------------------------------------- /cmake/FindOpenMesh.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/FindOpenMesh.cmake -------------------------------------------------------------------------------- /cmake/FindQGLViewer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/FindQGLViewer.cmake -------------------------------------------------------------------------------- /cmake/FindXercesC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/FindXercesC.cmake -------------------------------------------------------------------------------- /cmake/TargetDoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/TargetDoc.cmake -------------------------------------------------------------------------------- /cmake/msvc/kit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/msvc/kit.cmake -------------------------------------------------------------------------------- /cmake/msvc/kit_vs2010-64_v01.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/msvc/kit_vs2010-64_v01.cmake -------------------------------------------------------------------------------- /cmake/msvc/kit_vs2012-64_v07.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/msvc/kit_vs2012-64_v07.cmake -------------------------------------------------------------------------------- /cmake/msvc/kit_vs2015-64_v01-AppVeyor.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/msvc/kit_vs2015-64_v01-AppVeyor.cmake -------------------------------------------------------------------------------- /cmake/msvc/kit_vs2015-64_v01.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/cmake/msvc/kit_vs2015-64_v01.cmake -------------------------------------------------------------------------------- /doc/git/Git-GitHub source code management.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/git/Git-GitHub source code management.pdf -------------------------------------------------------------------------------- /doc/git/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/git/readme.txt -------------------------------------------------------------------------------- /doc/readme_EN_Linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_EN_Linux.txt -------------------------------------------------------------------------------- /doc/readme_EN_Mac_OS_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_EN_Mac_OS_X.txt -------------------------------------------------------------------------------- /doc/readme_EN_VMware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_EN_VMware.txt -------------------------------------------------------------------------------- /doc/readme_EN_Windows_VS2008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_EN_Windows_VS2008.txt -------------------------------------------------------------------------------- /doc/readme_EN_Windows_VS2008_x64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_EN_Windows_VS2008_x64.txt -------------------------------------------------------------------------------- /doc/readme_EN_Windows_VS2010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_EN_Windows_VS2010.txt -------------------------------------------------------------------------------- /doc/readme_EN_Windows_VS2010_x64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_EN_Windows_VS2010_x64.txt -------------------------------------------------------------------------------- /doc/readme_FR_Linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_FR_Linux.txt -------------------------------------------------------------------------------- /doc/readme_FR_Mac_OS_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_FR_Mac_OS_X.txt -------------------------------------------------------------------------------- /doc/readme_FR_VMware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_FR_VMware.txt -------------------------------------------------------------------------------- /doc/readme_FR_Windows_VS2008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_FR_Windows_VS2008.txt -------------------------------------------------------------------------------- /doc/readme_FR_Windows_VS2008_x64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_FR_Windows_VS2008_x64.txt -------------------------------------------------------------------------------- /doc/readme_FR_Windows_VS2010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_FR_Windows_VS2010.txt -------------------------------------------------------------------------------- /doc/readme_FR_Windows_VS2010_x64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme_FR_Windows_VS2010_x64.txt -------------------------------------------------------------------------------- /doc/readme__NEW__Windows_VS2015_x64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/readme__NEW__Windows_VS2015_x64.txt -------------------------------------------------------------------------------- /doc/tutorials/EN - MEPP component developer guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/tutorials/EN - MEPP component developer guide.pdf -------------------------------------------------------------------------------- /doc/tutorials/FR - MEPP component developer guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/tutorials/FR - MEPP component developer guide.pdf -------------------------------------------------------------------------------- /doc/tutorials/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doc/tutorials/readme.txt -------------------------------------------------------------------------------- /doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/doxy.config.in -------------------------------------------------------------------------------- /externals/ffmpeg/visual studio x64/ffmpeg-64.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/ffmpeg/visual studio x64/ffmpeg-64.rar -------------------------------------------------------------------------------- /externals/ffmpeg/visual studio x86/ffmpeg-32.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/ffmpeg/visual studio x86/ffmpeg-32.rar -------------------------------------------------------------------------------- /externals/xiot-0.9.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/CMakeLists.txt -------------------------------------------------------------------------------- /externals/xiot-0.9.0/CMakeModules/FindXercesC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/CMakeModules/FindXercesC.cmake -------------------------------------------------------------------------------- /externals/xiot-0.9.0/CMakeModules/TargetDoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/CMakeModules/TargetDoc.cmake -------------------------------------------------------------------------------- /externals/xiot-0.9.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/COPYING -------------------------------------------------------------------------------- /externals/xiot-0.9.0/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/INSTALL -------------------------------------------------------------------------------- /externals/xiot-0.9.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/README -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/README_SDK9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/README_SDK9 -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/resources/materials/default.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/resources/materials/default.material -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/resources/models/cube.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/resources/models/cube.mesh -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/resources/models/sphere.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/resources/models/sphere.mesh -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/ArgumentHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/ArgumentHelper.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/ArgumentHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/ArgumentHelper.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/CMakeLists.txt -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/ExampleApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/ExampleApplication.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/ExampleFrameListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/ExampleFrameListener.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/cfg/Plugins.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/cfg/Plugins.cfg.in -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/cfg/ogre.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/cfg/ogre.cfg.in -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/cfg/resources.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/cfg/resources.cfg.in -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/cmake/FindOGRE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/cmake/FindOGRE.cmake -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/cmake/FindOIS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/cmake/FindOIS.cmake -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/main.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step1/TutorialApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step1/TutorialApplication.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step1/TutorialApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step1/TutorialApplication.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step1/main.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/ArgumentHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/ArgumentHelper.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/ArgumentHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/ArgumentHelper.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/OgreNodeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/OgreNodeHandler.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/OgreNodeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/OgreNodeHandler.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/TutorialApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/TutorialApplication.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/TutorialApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/TutorialApplication.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step2/main.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/GeomUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/GeomUtils.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/GeomUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/GeomUtils.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/OgreNodeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/OgreNodeHandler.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/OgreNodeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/OgreNodeHandler.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/TutorialApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/TutorialApplication.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/TutorialApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/TutorialApplication.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step3/main.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/GeomUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/GeomUtils.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/GeomUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/GeomUtils.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/IndexedGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/IndexedGeometry.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/IndexedGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/IndexedGeometry.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/IndexedGeometry_dfki.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/IndexedGeometry_dfki.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/OgreNodeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/OgreNodeHandler.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/OgreNodeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/OgreNodeHandler.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/TutorialApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/TutorialApplication.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/TutorialApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/TutorialApplication.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/tutorials/ogre/src/step4/main.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/vtkX3DImporter_screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/vtkX3DImporter_screen.jpg -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doc/x3d_in_paraview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doc/x3d_in_paraview.jpg -------------------------------------------------------------------------------- /externals/xiot-0.9.0/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/doxy.config.in -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/Argument_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/Argument_helper.cc -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/Argument_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/Argument_helper.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/Argument_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/Argument_helper.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/CMakeLists.txt -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/README -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/X3DTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/X3DTest.cxx -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/X3DTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/X3DTest.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/main.cxx -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/vtkX3DExporterGeneric.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/vtkX3DExporterGeneric.cxx -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/vtkX3DExporterGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/vtkX3DExporterGeneric.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/vtkX3DImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/vtkX3DImporter.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/vtkX3DImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/vtkX3DImporter.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/vtkX3DIndexedGeometrySource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/vtkX3DIndexedGeometrySource.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/vtkX3DIndexedGeometrySource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/vtkX3DIndexedGeometrySource.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/vtkX3DLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/vtkX3DLoader.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/vtkX3DNodeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/vtkX3DNodeHandler.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/vtkX3DNodeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/vtkX3DNodeHandler.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/examples/vtkX3DRewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/examples/vtkX3DRewriter.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/FIConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/FIConfig.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/FIConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/FIConstants.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/FIContentHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/FIContentHandler.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/FIDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/FIDecoder.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/FIEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/FIEncoder.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/FIEncodingAlgorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/FIEncodingAlgorithms.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/FIParserVocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/FIParserVocabulary.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/FISAXParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/FISAXParser.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/FITypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/FITypes.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DAttributes.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DDataTypeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DDataTypeFactory.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DDefaultNodeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DDefaultNodeHandler.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DFIAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DFIAttributes.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DFICompressionTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DFICompressionTools.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DFIEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DFIEncoder.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DFIEncodingAlgorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DFIEncodingAlgorithms.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DFILoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DFILoader.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DLoader.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DNodeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DNodeHandler.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DParseException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DParseException.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DParserVocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DParserVocabulary.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DSwitch.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DTypes.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DWriter.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DWriterFI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DWriterFI.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DWriterFIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DWriterFIHelper.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DWriterXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DWriterXML.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DXMLAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DXMLAttributes.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/X3DXMLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/X3DXMLLoader.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/include/xiot/XIOTConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/include/xiot/XIOTConfig.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /externals/xiot-0.9.0/plugins/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/plugins/README -------------------------------------------------------------------------------- /externals/xiot-0.9.0/plugins/X3DReader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/plugins/X3DReader.xml -------------------------------------------------------------------------------- /externals/xiot-0.9.0/plugins/X3DReaderGUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/plugins/X3DReaderGUI.xml -------------------------------------------------------------------------------- /externals/xiot-0.9.0/plugins/vtkX3DSource.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/plugins/vtkX3DSource.cxx -------------------------------------------------------------------------------- /externals/xiot-0.9.0/plugins/vtkX3DSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/plugins/vtkX3DSource.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/CMakeLists.txt -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/CMakeLists.txt.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/CMakeLists.txt.org -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/FIContentHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/FIContentHandler.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/FIDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/FIDecoder.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/FIEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/FIEncoder.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/FIEncodingAlgorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/FIEncodingAlgorithms.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/FIParserVocabulary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/FIParserVocabulary.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/FISAXParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/FISAXParser.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DAttributes.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DDataTypeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DDataTypeFactory.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DDefaultNodeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DDefaultNodeHandler.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DFIAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DFIAttributes.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DFICompressionTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DFICompressionTools.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DFIEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DFIEncoder.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DFIEncodingAlgorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DFIEncodingAlgorithms.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DFILoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DFILoader.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DLoader.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DParseException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DParseException.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DParserVocabulary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DParserVocabulary.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DSwitch.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DTypes.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DWriter.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DWriterFI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DWriterFI.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DWriterXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DWriterXML.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DXMLAttributesExpatImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DXMLAttributesExpatImpl.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DXMLAttributesXercesImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DXMLAttributesXercesImpl.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DXMLLoaderExpatImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DXMLLoaderExpatImpl.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/X3DXMLLoaderXercesImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/X3DXMLLoaderXercesImpl.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/conf/vtkCMakeLists.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/conf/vtkCMakeLists.txt.in -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/conf/vtkFIConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/conf/vtkFIConfig.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/conf/vtkXIOTConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/conf/vtkXIOTConfig.h.in -------------------------------------------------------------------------------- /externals/xiot-0.9.0/src/gen/sourceGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/src/gen/sourceGenerator.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/tests/Argument_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/tests/Argument_helper.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/tests/Argument_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/tests/Argument_helper.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/tests/CMakeLists.txt -------------------------------------------------------------------------------- /externals/xiot-0.9.0/tests/IOTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/tests/IOTest.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/tests/X3DLogNodeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/tests/X3DLogNodeHandler.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/tests/X3DLogNodeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/tests/X3DLogNodeHandler.h -------------------------------------------------------------------------------- /externals/xiot-0.9.0/tests/createEventLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/tests/createEventLog.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/tests/dist_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/tests/dist_test/CMakeLists.txt -------------------------------------------------------------------------------- /externals/xiot-0.9.0/tests/dist_test/dist_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/tests/dist_test/dist_test.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/tests/fitest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/tests/fitest.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/tests/parserPerformance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/tests/parserPerformance.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/tests/shapeCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/tests/shapeCounter.cpp -------------------------------------------------------------------------------- /externals/xiot-0.9.0/tests/simpleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/externals/xiot-0.9.0/tests/simpleTest.cpp -------------------------------------------------------------------------------- /licence_gpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/licence_gpl_v3.txt -------------------------------------------------------------------------------- /licence_gpl_v3_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/licence_gpl_v3_fr.txt -------------------------------------------------------------------------------- /scripts/cat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/scripts/cat.exe -------------------------------------------------------------------------------- /scripts/cat.sh: -------------------------------------------------------------------------------- 1 | cat $2*.$4 1> $3.$4 2 | -------------------------------------------------------------------------------- /scripts/gnu_cat.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | %1cat %2*.%4 1> %3.%4 3 | -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/cmake/use_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/cmake/use_components.txt -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/doxy.config.in -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/licence_gpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/licence_gpl_v3.txt -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/licence_gpl_v3_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/licence_gpl_v3_fr.txt -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/src/Curvature_Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/src/Curvature_Component.cpp -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/src/Curvature_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/src/Curvature_Component.h -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/src/Curvature_Items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/src/Curvature_Items.h -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/src/Curvature_Polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/src/Curvature_Polyhedron.h -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/src/dialSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/src/dialSettings.cpp -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/src/dialSettings.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/src/dialSettings.hxx -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/src/dialSettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/src/dialSettings.ui -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/src/extract_Vpropres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/src/extract_Vpropres.cpp -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/src/extract_Vpropres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/src/extract_Vpropres.h -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/src/mepp_component_Curvature_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/src/mepp_component_Curvature_plugin.cpp -------------------------------------------------------------------------------- /src/components/Analysis/Curvature/src/mepp_component_Curvature_plugin.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Analysis/Curvature/src/mepp_component_Curvature_plugin.hxx -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/cmake/use_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/cmake/use_components.txt -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/doxy.config.in -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/licence_gpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/licence_gpl_v3.txt -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/licence_gpl_v3_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/licence_gpl_v3_fr.txt -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/Compression_Valence_Basemesh_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/Compression_Valence_Basemesh_builder.h -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/Compression_Valence_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/Compression_Valence_Common.h -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/Compression_Valence_Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/Compression_Valence_Component.cpp -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/Compression_Valence_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/Compression_Valence_Component.h -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/Compression_Valence_Items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/Compression_Valence_Items.h -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/Compression_Valence_Polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/Compression_Valence_Polyhedron.h -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/Matrix3X3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/Matrix3X3.h -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/Processing_Kai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/Processing_Kai.cpp -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/Processing_Kai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/Processing_Kai.h -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/Processing_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/Processing_Types.h -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/arithmetic_codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/arithmetic_codec.cpp -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/arithmetic_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/arithmetic_codec.h -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/dialSettingsComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/dialSettingsComp.cpp -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/dialSettingsComp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/dialSettingsComp.hxx -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/dialSettingsComp.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/dialSettingsComp.ui -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/dialSettingsDecomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/dialSettingsDecomp.cpp -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/dialSettingsDecomp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/dialSettingsDecomp.hxx -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/dialSettingsDecomp.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/dialSettingsDecomp.ui -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/dialSettingsJCW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/dialSettingsJCW.cpp -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/dialSettingsJCW.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/dialSettingsJCW.hxx -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/dialSettingsJCW.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/dialSettingsJCW.ui -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/mepp_component_Compression_Valence_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/mepp_component_Compression_Valence_plugin.cpp -------------------------------------------------------------------------------- /src/components/Compression/Compression_Valence/src/mepp_component_Compression_Valence_plugin.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Compression/Compression_Valence/src/mepp_component_Compression_Valence_plugin.hxx -------------------------------------------------------------------------------- /src/components/Distance/MSDM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/Distance/MSDM/cmake/use_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/cmake/use_components.txt -------------------------------------------------------------------------------- /src/components/Distance/MSDM/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/doxy.config.in -------------------------------------------------------------------------------- /src/components/Distance/MSDM/licence_gpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/licence_gpl_v3.txt -------------------------------------------------------------------------------- /src/components/Distance/MSDM/licence_gpl_v3_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/licence_gpl_v3_fr.txt -------------------------------------------------------------------------------- /src/components/Distance/MSDM/src/MSDM_Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/src/MSDM_Component.cpp -------------------------------------------------------------------------------- /src/components/Distance/MSDM/src/MSDM_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/src/MSDM_Component.h -------------------------------------------------------------------------------- /src/components/Distance/MSDM/src/MSDM_Items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/src/MSDM_Items.h -------------------------------------------------------------------------------- /src/components/Distance/MSDM/src/MSDM_Polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/src/MSDM_Polyhedron.h -------------------------------------------------------------------------------- /src/components/Distance/MSDM/src/dialSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/src/dialSettings.cpp -------------------------------------------------------------------------------- /src/components/Distance/MSDM/src/dialSettings.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/src/dialSettings.hxx -------------------------------------------------------------------------------- /src/components/Distance/MSDM/src/dialSettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/src/dialSettings.ui -------------------------------------------------------------------------------- /src/components/Distance/MSDM/src/mepp_component_MSDM_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/src/mepp_component_MSDM_plugin.cpp -------------------------------------------------------------------------------- /src/components/Distance/MSDM/src/mepp_component_MSDM_plugin.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM/src/mepp_component_MSDM_plugin.hxx -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/cmake/use_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/cmake/use_components.txt -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/doxy.config.in -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/licence_gpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/licence_gpl_v3.txt -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/licence_gpl_v3_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/licence_gpl_v3_fr.txt -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/readme_EN_IMPORTANT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/readme_EN_IMPORTANT.txt -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/readme_FR_IMPORTANT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/readme_FR_IMPORTANT.txt -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/src/MSDM2_Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/src/MSDM2_Component.cpp -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/src/MSDM2_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/src/MSDM2_Component.h -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/src/MSDM2_Items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/src/MSDM2_Items.h -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/src/MSDM2_Polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/src/MSDM2_Polyhedron.h -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/src/dialSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/src/dialSettings.cpp -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/src/dialSettings.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/src/dialSettings.hxx -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/src/dialSettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/src/dialSettings.ui -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/src/mepp_component_MSDM2_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/src/mepp_component_MSDM2_plugin.cpp -------------------------------------------------------------------------------- /src/components/Distance/MSDM2/src/mepp_component_MSDM2_plugin.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Distance/MSDM2/src/mepp_component_MSDM2_plugin.hxx -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/cmake/use_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/cmake/use_components.txt -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/doxy.config.in -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/licence_gpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/licence_gpl_v3.txt -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/licence_gpl_v3_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/licence_gpl_v3_fr.txt -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/src/CGAL_Example_Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/src/CGAL_Example_Component.cpp -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/src/CGAL_Example_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/src/CGAL_Example_Component.h -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/src/CGAL_Example_Items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/src/CGAL_Example_Items.h -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/src/CGAL_Example_Polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/src/CGAL_Example_Polyhedron.h -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/src/dialSettings_CGAL_Example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/src/dialSettings_CGAL_Example.cpp -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/src/dialSettings_CGAL_Example.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/src/dialSettings_CGAL_Example.hxx -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/src/dialSettings_CGAL_Example.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/src/dialSettings_CGAL_Example.ui -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/src/mepp_component_CGAL_Example_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/src/mepp_component_CGAL_Example_plugin.cpp -------------------------------------------------------------------------------- /src/components/Examples/CGAL_Example/src/mepp_component_CGAL_Example_plugin.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Examples/CGAL_Example/src/mepp_component_CGAL_Example_plugin.hxx -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/cmake/use_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/cmake/use_components.txt -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/doxy.config.in -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/licence_gpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/licence_gpl_v3.txt -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/licence_gpl_v3_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/licence_gpl_v3_fr.txt -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/src/Canonical_Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/src/Canonical_Component.cpp -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/src/Canonical_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/src/Canonical_Component.h -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/src/Canonical_Items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/src/Canonical_Items.h -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/src/Canonical_Polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/src/Canonical_Polyhedron.h -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/src/dialSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/src/dialSettings.cpp -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/src/dialSettings.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/src/dialSettings.hxx -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/src/dialSettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/src/dialSettings.ui -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/src/mepp_component_Canonical_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/src/mepp_component_Canonical_plugin.cpp -------------------------------------------------------------------------------- /src/components/Remeshing/Canonical/src/mepp_component_Canonical_plugin.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Remeshing/Canonical/src/mepp_component_Canonical_plugin.hxx -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/cmake/use_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/cmake/use_components.txt -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/doxy.config.in -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/licence_gpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/licence_gpl_v3.txt -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/licence_gpl_v3_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/licence_gpl_v3_fr.txt -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/src/VSA_Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/src/VSA_Component.cpp -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/src/VSA_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/src/VSA_Component.h -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/src/VSA_Items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/src/VSA_Items.h -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/src/VSA_Polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/src/VSA_Polyhedron.h -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/src/dialSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/src/dialSettings.cpp -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/src/dialSettings.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/src/dialSettings.hxx -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/src/dialSettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/src/dialSettings.ui -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/src/mepp_component_VSA_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/src/mepp_component_VSA_plugin.cpp -------------------------------------------------------------------------------- /src/components/Segmentation/VSA/src/mepp_component_VSA_plugin.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Segmentation/VSA/src/mepp_component_VSA_plugin.hxx -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/cmake/use_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/cmake/use_components.txt -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/doxy.config.in -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/licence_gpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/licence_gpl_v3.txt -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/licence_gpl_v3_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/licence_gpl_v3_fr.txt -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/src/BoolPolyhedra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/src/BoolPolyhedra.h -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/src/Boolean_Operations_Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/src/Boolean_Operations_Component.cpp -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/src/Boolean_Operations_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/src/Boolean_Operations_Component.h -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/src/Boolean_Operations_Definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/src/Boolean_Operations_Definitions.h -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/src/Boolean_Operations_Items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/src/Boolean_Operations_Items.h -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/src/Boolean_Operations_Polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/src/Boolean_Operations_Polyhedron.h -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/src/Boolean_Operations_triangulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/src/Boolean_Operations_triangulation.h -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/src/CPolyhedron_from_polygon_builder_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/src/CPolyhedron_from_polygon_builder_3.h -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/src/Time_measure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/src/Time_measure.h -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/src/mepp_component_Boolean_Operations_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/src/mepp_component_Boolean_Operations_plugin.cpp -------------------------------------------------------------------------------- /src/components/Tools/Boolean_Operations/src/mepp_component_Boolean_Operations_plugin.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Boolean_Operations/src/mepp_component_Boolean_Operations_plugin.hxx -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/cmake/use_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/cmake/use_components.txt -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/doxy.config.in -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/licence_gpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/licence_gpl_v3.txt -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/licence_gpl_v3_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/licence_gpl_v3_fr.txt -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/Various_Processing_Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/Various_Processing_Component.cpp -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/Various_Processing_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/Various_Processing_Component.h -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/Various_Processing_Items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/Various_Processing_Items.h -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/Various_Processing_Polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/Various_Processing_Polyhedron.h -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/Various_Processing_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/Various_Processing_Types.h -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Noise.cpp -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Noise.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Noise.hxx -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Noise.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Noise.ui -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Quantization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Quantization.cpp -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Quantization.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Quantization.hxx -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Quantization.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Quantization.ui -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Rotation.cpp -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Rotation.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Rotation.hxx -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Rotation.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Rotation.ui -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Simplification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Simplification.cpp -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Simplification.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Simplification.hxx -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Simplification.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Simplification.ui -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Smoothing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Smoothing.cpp -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Smoothing.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Smoothing.hxx -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Smoothing.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Smoothing.ui -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Subdivision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Subdivision.cpp -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Subdivision.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Subdivision.hxx -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Subdivision.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Subdivision.ui -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Translation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Translation.cpp -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Translation.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Translation.hxx -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Translation.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Translation.ui -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Uniform_Scaling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Uniform_Scaling.cpp -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Uniform_Scaling.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Uniform_Scaling.hxx -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Uniform_Scaling.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/dialSettings_Various_Processing_Uniform_Scaling.ui -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/mepp_component_Various_Processing_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/mepp_component_Various_Processing_plugin.cpp -------------------------------------------------------------------------------- /src/components/Tools/Various_Processing/src/mepp_component_Various_Processing_plugin.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Processing/src/mepp_component_Various_Processing_plugin.hxx -------------------------------------------------------------------------------- /src/components/Tools/Various_Tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/Tools/Various_Tools/cmake/use_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Tools/cmake/use_components.txt -------------------------------------------------------------------------------- /src/components/Tools/Various_Tools/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Tools/doxy.config.in -------------------------------------------------------------------------------- /src/components/Tools/Various_Tools/licence_gpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Tools/licence_gpl_v3.txt -------------------------------------------------------------------------------- /src/components/Tools/Various_Tools/licence_gpl_v3_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Tools/licence_gpl_v3_fr.txt -------------------------------------------------------------------------------- /src/components/Tools/Various_Tools/src/Various_Tools_Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Tools/src/Various_Tools_Component.cpp -------------------------------------------------------------------------------- /src/components/Tools/Various_Tools/src/Various_Tools_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Tools/src/Various_Tools_Component.h -------------------------------------------------------------------------------- /src/components/Tools/Various_Tools/src/Various_Tools_Items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Tools/src/Various_Tools_Items.h -------------------------------------------------------------------------------- /src/components/Tools/Various_Tools/src/Various_Tools_Polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Tools/src/Various_Tools_Polyhedron.h -------------------------------------------------------------------------------- /src/components/Tools/Various_Tools/src/mepp_component_Various_Tools_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Tools/src/mepp_component_Various_Tools_plugin.cpp -------------------------------------------------------------------------------- /src/components/Tools/Various_Tools/src/mepp_component_Various_Tools_plugin.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/components/Tools/Various_Tools/src/mepp_component_Various_Tools_plugin.hxx -------------------------------------------------------------------------------- /src/components/Watermarking/add_components_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mepp/Library/Polyhedron_geometric_global_measure_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Library/Polyhedron_geometric_global_measure_3.h -------------------------------------------------------------------------------- /src/mepp/Library/Polyhedron_geometric_transformation_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Library/Polyhedron_geometric_transformation_3.h -------------------------------------------------------------------------------- /src/mepp/Library/Polyhedron_topological_transformation_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Library/Polyhedron_topological_transformation_3.h -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Antialiasing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Antialiasing.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Axis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Axis.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_BackgroundColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_BackgroundColor.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_BoundingBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_BoundingBox.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_BoundingBoxOnMove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_BoundingBoxOnMove.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_CenterAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_CenterAll.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Clipboard.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_CopyViewpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_CopyViewpoint.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_CoupleRotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_CoupleRotations.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Culling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Culling.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_DL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_DL.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Delete.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_EdgeColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_EdgeColor.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Edges.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_FPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_FPS.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_FaceColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_FaceColor.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_FaceColorMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_FaceColorMode.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_First.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_First.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Grid.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Last.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Lighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Lighting.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Material.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Next.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Normals.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Params.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_PasteViewpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_PasteViewpoint.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_PointColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_PointColor.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Previous.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_RenderFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_RenderFill.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_ReverseStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_ReverseStart.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_ReverseStartLoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_ReverseStartLoop.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Screenshot.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_ScreenshotSequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_ScreenshotSequence.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_ShowAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_ShowAll.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Smoothing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Smoothing.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Start.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_StartLoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_StartLoop.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Stop.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_SuperimposeEdges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_SuperimposeEdges.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_SuperimposeSpheres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_SuperimposeSpheres.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_SuperimposeVertices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_SuperimposeVertices.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_VBO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_VBO.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_VertexColorMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_VertexColorMode.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/_Vertices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/_Vertices.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/copy.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/cut.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/new.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/open.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/paste.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/save.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/textureEnable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/textureEnable.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/textureOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/textureOpen.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/textureSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/textureSettings.png -------------------------------------------------------------------------------- /src/mepp/Pictures/Icons/textureToColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/Icons/textureToColor.png -------------------------------------------------------------------------------- /src/mepp/Pictures/MEPP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/MEPP.png -------------------------------------------------------------------------------- /src/mepp/Pictures/cgal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/cgal.png -------------------------------------------------------------------------------- /src/mepp/Pictures/mepp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/mepp.icns -------------------------------------------------------------------------------- /src/mepp/Pictures/mepp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/mepp.ico -------------------------------------------------------------------------------- /src/mepp/Pictures/mepp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Pictures/mepp.rc -------------------------------------------------------------------------------- /src/mepp/Polyhedron/Correct_CGAL_Structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/Correct_CGAL_Structure.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/Polyhedron_ASSIMP_CGALImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/Polyhedron_ASSIMP_CGALImporter.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/Polyhedron_Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/Polyhedron_Builder.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/Polyhedron_Copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/Polyhedron_Copy.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/Polyhedron_OBJ_CGALImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/Polyhedron_OBJ_CGALImporter.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/Polyhedron_OFF_CGALImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/Polyhedron_OFF_CGALImporter.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/Polyhedron_PLY_CGALImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/Polyhedron_PLY_CGALImporter.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/Polyhedron_SMF_CGALImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/Polyhedron_SMF_CGALImporter.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/Polyhedron_X3D_CGALImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/Polyhedron_X3D_CGALImporter.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/X3D_IFS_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/X3D_IFS_old.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/X3D_old.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/X3D_old.cpp -------------------------------------------------------------------------------- /src/mepp/Polyhedron/X3D_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/X3D_old.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/mesh.cpp -------------------------------------------------------------------------------- /src/mepp/Polyhedron/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/mesh.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/ply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/ply.cpp -------------------------------------------------------------------------------- /src/mepp/Polyhedron/ply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/ply.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/polyhedron.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/polyhedron_enriched_polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/polyhedron_enriched_polyhedron.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/polyhedron_shared_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/polyhedron_shared_items.h -------------------------------------------------------------------------------- /src/mepp/Polyhedron/rply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/rply.c -------------------------------------------------------------------------------- /src/mepp/Polyhedron/rply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Polyhedron/rply.h -------------------------------------------------------------------------------- /src/mepp/QTFFmpegWrapper/QVideoDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/QTFFmpegWrapper/QVideoDecoder.cpp -------------------------------------------------------------------------------- /src/mepp/QTFFmpegWrapper/QVideoDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/QTFFmpegWrapper/QVideoDecoder.h -------------------------------------------------------------------------------- /src/mepp/QTFFmpegWrapper/QVideoEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/QTFFmpegWrapper/QVideoEncoder.cpp -------------------------------------------------------------------------------- /src/mepp/QTFFmpegWrapper/QVideoEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/QTFFmpegWrapper/QVideoEncoder.h -------------------------------------------------------------------------------- /src/mepp/QTFFmpegWrapper/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/QTFFmpegWrapper/README -------------------------------------------------------------------------------- /src/mepp/QTFFmpegWrapper/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/QTFFmpegWrapper/ffmpeg.h -------------------------------------------------------------------------------- /src/mepp/Tools/Tools_Polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Tools/Tools_Polyhedron.h -------------------------------------------------------------------------------- /src/mepp/Tools/Tools_Polyhedron_decorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Tools/Tools_Polyhedron_decorator.h -------------------------------------------------------------------------------- /src/mepp/Tools/Tools_Polyhedron_memory_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Tools/Tools_Polyhedron_memory_builder.h -------------------------------------------------------------------------------- /src/mepp/Tools/Tools_Polyhedron_subdivision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Tools/Tools_Polyhedron_subdivision.h -------------------------------------------------------------------------------- /src/mepp/Tools/Tools_Polyhedron_subdivision_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Tools/Tools_Polyhedron_subdivision_rules.h -------------------------------------------------------------------------------- /src/mepp/Tools/Tools_quad-triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Tools/Tools_quad-triangle.h -------------------------------------------------------------------------------- /src/mepp/Tools/Tools_sqrt3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/Tools/Tools_sqrt3.h -------------------------------------------------------------------------------- /src/mepp/_enrichment_.in/polyhedron_enrichment_define.h.in: -------------------------------------------------------------------------------- 1 | #define BUILD_${MEPP_COMPONENT_NAME} -------------------------------------------------------------------------------- /src/mepp/_enrichment_.in/polyhedron_enrichment_facet.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/_enrichment_.in/polyhedron_enrichment_facet.h.in -------------------------------------------------------------------------------- /src/mepp/_enrichment_.in/polyhedron_enrichment_halfedge.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/_enrichment_.in/polyhedron_enrichment_halfedge.h.in -------------------------------------------------------------------------------- /src/mepp/_enrichment_.in/polyhedron_enrichment_include.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/_enrichment_.in/polyhedron_enrichment_include.h.in -------------------------------------------------------------------------------- /src/mepp/_enrichment_.in/polyhedron_enrichment_polyhedron.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/_enrichment_.in/polyhedron_enrichment_polyhedron.h.in -------------------------------------------------------------------------------- /src/mepp/_enrichment_.in/polyhedron_enrichment_vertex.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/_enrichment_.in/polyhedron_enrichment_vertex.h.in -------------------------------------------------------------------------------- /src/mepp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/main.cpp -------------------------------------------------------------------------------- /src/mepp/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/mainwindow.cpp -------------------------------------------------------------------------------- /src/mepp/mainwindow.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/mainwindow.hxx -------------------------------------------------------------------------------- /src/mepp/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/mainwindow.ui -------------------------------------------------------------------------------- /src/mepp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/material.h -------------------------------------------------------------------------------- /src/mepp/mdiarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/mdiarea.cpp -------------------------------------------------------------------------------- /src/mepp/mdiarea.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/mdiarea.hxx -------------------------------------------------------------------------------- /src/mepp/mepp.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/mepp.qrc -------------------------------------------------------------------------------- /src/mepp/mepp_action.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/mepp_action.hxx -------------------------------------------------------------------------------- /src/mepp/mepp_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/mepp_component.h -------------------------------------------------------------------------------- /src/mepp/mepp_component_plugin_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/mepp_component_plugin_interface.h -------------------------------------------------------------------------------- /src/mepp/mepp_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/mepp_config.h.in -------------------------------------------------------------------------------- /src/mepp/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/scene.cpp -------------------------------------------------------------------------------- /src/mepp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/scene.h -------------------------------------------------------------------------------- /src/mepp/viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/viewer.cpp -------------------------------------------------------------------------------- /src/mepp/viewer.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEPP-team/MEPP/HEAD/src/mepp/viewer.hxx --------------------------------------------------------------------------------