Commits (158)
- 58 additional commits have been omitted to prevent performance issues.
Showing
with
662397 additions
and
39993 deletions
+662397
-39993
- .gitignore .gitignore +4 -1
- Apps/Benches/CMakeLists.txt Apps/Benches/CMakeLists.txt +0 -20
- Apps/Benches/bench_compact.cpp Apps/Benches/bench_compact.cpp +2 -2
- Apps/Benches/bench_remesh.cpp Apps/Benches/bench_remesh.cpp +2 -2
- Apps/CMakeLists.txt Apps/CMakeLists.txt +23 -32
- Apps/Examples/CMakeLists.txt Apps/Examples/CMakeLists.txt +18 -26
- Apps/Examples/clipping.cpp Apps/Examples/clipping.cpp +7 -3
- Apps/Examples/simpleGMap3.cpp Apps/Examples/simpleGMap3.cpp +13 -13
- Apps/Examples/viewer.cpp Apps/Examples/viewer.cpp +1 -1
- Apps/Examples/volumeExplorer.cpp Apps/Examples/volumeExplorer.cpp +37 -73
- Apps/Examples/volumeExplorer.h Apps/Examples/volumeExplorer.h +7 -4
- Apps/SandBox/CMakeLists.txt Apps/SandBox/CMakeLists.txt +12 -33
- Apps/SandBox/wallPaper.cpp Apps/SandBox/wallPaper.cpp +2 -0
- Apps/Tests/CMakeLists.txt Apps/Tests/CMakeLists.txt +1 -16
- Apps/Tuto/Attributes/CMakeLists.txt Apps/Tuto/Attributes/CMakeLists.txt +5 -4
- Apps/Tuto/CMakeLists.txt Apps/Tuto/CMakeLists.txt +29 -66
- Apps/Tuto/Modelling/CMakeLists.txt Apps/Tuto/Modelling/CMakeLists.txt +15 -11
- Apps/Tuto/Modelling/tuto_oper3.cpp Apps/Tuto/Modelling/tuto_oper3.cpp +2 -2
- Apps/Tuto/Traversals/CMakeLists.txt Apps/Tuto/Traversals/CMakeLists.txt +18 -15
- Apps/Tuto/Traversals/show_traversors2.cpp Apps/Tuto/Traversals/show_traversors2.cpp +16 -15
- Apps/Tuto/Traversals/show_traversors2.h Apps/Tuto/Traversals/show_traversors2.h +1 -1
- Apps/Tuto/Traversals/show_traversors3.cpp Apps/Tuto/Traversals/show_traversors3.cpp +26 -25
- Apps/Tuto/Traversals/show_traversors3.h Apps/Tuto/Traversals/show_traversors3.h +1 -1
- Apps/Tuto/tuto1.cpp Apps/Tuto/tuto1.cpp +2 -0
- Apps/Tuto/tuto5.cpp Apps/Tuto/tuto5.cpp +2 -0
- CGoGN/CMakeLists.txt CGoGN/CMakeLists.txt +144 -0
- CGoGN/include/.gitignore CGoGN/include/.gitignore +0 -0
- CGoGN/include/Algo/BooleanOperator/mergeVertices.h CGoGN/include/Algo/BooleanOperator/mergeVertices.h +0 -0
- CGoGN/include/Algo/BooleanOperator/mergeVertices.hpp CGoGN/include/Algo/BooleanOperator/mergeVertices.hpp +0 -0
- CGoGN/include/Algo/Decimation/approximator.h CGoGN/include/Algo/Decimation/approximator.h +143 -0
- CGoGN/include/Algo/Decimation/approximator.hpp CGoGN/include/Algo/Decimation/approximator.hpp +159 -0
- CGoGN/include/Algo/Decimation/colorPerVertexApproximator.h CGoGN/include/Algo/Decimation/colorPerVertexApproximator.h +140 -0
- CGoGN/include/Algo/Decimation/colorPerVertexApproximator.hpp CGoGN/include/Algo/Decimation/colorPerVertexApproximator.hpp +272 -0
- CGoGN/include/Algo/Decimation/decimation.h CGoGN/include/Algo/Decimation/decimation.h +112 -0
- CGoGN/include/Algo/Decimation/decimation.hpp CGoGN/include/Algo/Decimation/decimation.hpp +277 -0
- CGoGN/include/Algo/Decimation/edgeSelector.h CGoGN/include/Algo/Decimation/edgeSelector.h +796 -0
- CGoGN/include/Algo/Decimation/edgeSelector.hpp CGoGN/include/Algo/Decimation/edgeSelector.hpp +2308 -0
- CGoGN/include/Algo/Decimation/geometryApproximator.h CGoGN/include/Algo/Decimation/geometryApproximator.h +196 -0
- CGoGN/include/Algo/Decimation/geometryApproximator.hpp CGoGN/include/Algo/Decimation/geometryApproximator.hpp +480 -0
- CGoGN/include/Algo/Decimation/geometryPredictor.h CGoGN/include/Algo/Decimation/geometryPredictor.h +0 -0
- CGoGN/include/Algo/Decimation/geometryPredictor.hpp CGoGN/include/Algo/Decimation/geometryPredictor.hpp +0 -0
- CGoGN/include/Algo/Decimation/halfEdgeSelector.h CGoGN/include/Algo/Decimation/halfEdgeSelector.h +398 -0
- CGoGN/include/Algo/Decimation/halfEdgeSelector.hpp CGoGN/include/Algo/Decimation/halfEdgeSelector.hpp +1119 -0
- CGoGN/include/Algo/Decimation/predictor.h CGoGN/include/Algo/Decimation/predictor.h +0 -0
- CGoGN/include/Algo/Decimation/selector.h CGoGN/include/Algo/Decimation/selector.h +115 -0
- CGoGN/include/Algo/Export/export.h CGoGN/include/Algo/Export/export.h +0 -0
- CGoGN/include/Algo/Export/export.hpp CGoGN/include/Algo/Export/export.hpp +0 -0
- CGoGN/include/Algo/Export/exportPov.h CGoGN/include/Algo/Export/exportPov.h +0 -0
- CGoGN/include/Algo/Export/exportVTU.h CGoGN/include/Algo/Export/exportVTU.h +0 -0
- CGoGN/include/Algo/Export/exportVTU.hpp CGoGN/include/Algo/Export/exportVTU.hpp +0 -0
- CGoGN/include/Algo/Export/exportVol.h CGoGN/include/Algo/Export/exportVol.h +0 -0
- CGoGN/include/Algo/Export/exportVol.hpp CGoGN/include/Algo/Export/exportVol.hpp +937 -0
- CGoGN/include/Algo/Filtering/average.h CGoGN/include/Algo/Filtering/average.h +0 -0
- CGoGN/include/Algo/Filtering/average_normals.h CGoGN/include/Algo/Filtering/average_normals.h +0 -0
- CGoGN/include/Algo/Filtering/bilateral.h CGoGN/include/Algo/Filtering/bilateral.h +172 -0
- CGoGN/include/Algo/Filtering/functors.h CGoGN/include/Algo/Filtering/functors.h +0 -0
- CGoGN/include/Algo/Filtering/taubin.h CGoGN/include/Algo/Filtering/taubin.h +0 -0
- CGoGN/include/Algo/Filtering/tools.h CGoGN/include/Algo/Filtering/tools.h +0 -0
- CGoGN/include/Algo/Geometry/area.h CGoGN/include/Algo/Geometry/area.h +0 -0
- CGoGN/include/Algo/Geometry/area.hpp CGoGN/include/Algo/Geometry/area.hpp +0 -0
- CGoGN/include/Algo/Geometry/basic.h CGoGN/include/Algo/Geometry/basic.h +0 -0
- CGoGN/include/Algo/Geometry/boundingbox.h CGoGN/include/Algo/Geometry/boundingbox.h +0 -0
- CGoGN/include/Algo/Geometry/centroid.h CGoGN/include/Algo/Geometry/centroid.h +0 -0
- CGoGN/include/Algo/Geometry/centroid.hpp CGoGN/include/Algo/Geometry/centroid.hpp +324 -0
- CGoGN/include/Algo/Geometry/convexity.h CGoGN/include/Algo/Geometry/convexity.h +0 -0
- CGoGN/include/Algo/Geometry/convexity.hpp CGoGN/include/Algo/Geometry/convexity.hpp +0 -0
- CGoGN/include/Algo/Geometry/curvature.h CGoGN/include/Algo/Geometry/curvature.h +0 -0
- CGoGN/include/Algo/Geometry/curvature.hpp CGoGN/include/Algo/Geometry/curvature.hpp +0 -0
- CGoGN/include/Algo/Geometry/distances.h CGoGN/include/Algo/Geometry/distances.h +0 -0
- CGoGN/include/Algo/Geometry/distances.hpp CGoGN/include/Algo/Geometry/distances.hpp +0 -0
- CGoGN/include/Algo/Geometry/feature.h CGoGN/include/Algo/Geometry/feature.h +0 -0
- CGoGN/include/Algo/Geometry/feature.hpp CGoGN/include/Algo/Geometry/feature.hpp +0 -0
- CGoGN/include/Algo/Geometry/inclusion.h CGoGN/include/Algo/Geometry/inclusion.h +0 -0
- CGoGN/include/Algo/Geometry/inclusion.hpp CGoGN/include/Algo/Geometry/inclusion.hpp +0 -0
- CGoGN/include/Algo/Geometry/intersection.h CGoGN/include/Algo/Geometry/intersection.h +0 -0
- CGoGN/include/Algo/Geometry/intersection.hpp CGoGN/include/Algo/Geometry/intersection.hpp +0 -0
- CGoGN/include/Algo/Geometry/laplacian.h CGoGN/include/Algo/Geometry/laplacian.h +0 -0
- CGoGN/include/Algo/Geometry/laplacian.hpp CGoGN/include/Algo/Geometry/laplacian.hpp +0 -0
- CGoGN/include/Algo/Geometry/localFrame.h CGoGN/include/Algo/Geometry/localFrame.h +0 -0
- CGoGN/include/Algo/Geometry/normal.h CGoGN/include/Algo/Geometry/normal.h +0 -0
- CGoGN/include/Algo/Geometry/normal.hpp CGoGN/include/Algo/Geometry/normal.hpp +0 -0
- CGoGN/include/Algo/Geometry/normalization.h CGoGN/include/Algo/Geometry/normalization.h +0 -0
- CGoGN/include/Algo/Geometry/orientation.h CGoGN/include/Algo/Geometry/orientation.h +0 -0
- CGoGN/include/Algo/Geometry/plane.h CGoGN/include/Algo/Geometry/plane.h +0 -0
- CGoGN/include/Algo/Geometry/stats.h CGoGN/include/Algo/Geometry/stats.h +0 -0
- CGoGN/include/Algo/Geometry/volume.h CGoGN/include/Algo/Geometry/volume.h +0 -0
- CGoGN/include/Algo/Geometry/volume.hpp CGoGN/include/Algo/Geometry/volume.hpp +0 -0
- CGoGN/include/Algo/Geometry/voronoiDiagrams.h CGoGN/include/Algo/Geometry/voronoiDiagrams.h +0 -0
- CGoGN/include/Algo/Geometry/voronoiDiagrams.hpp CGoGN/include/Algo/Geometry/voronoiDiagrams.hpp +0 -0
- CGoGN/include/Algo/Histogram/histogram.h CGoGN/include/Algo/Histogram/histogram.h +370 -0
- CGoGN/include/Algo/Histogram/histogram.hpp CGoGN/include/Algo/Histogram/histogram.hpp +262 -0
- CGoGN/include/Algo/Histogram/qthistodraw.h CGoGN/include/Algo/Histogram/qthistodraw.h +185 -0
- CGoGN/include/Algo/ImplicitHierarchicalMesh/ihm.hppxx CGoGN/include/Algo/ImplicitHierarchicalMesh/ihm.hppxx +0 -0
- CGoGN/include/Algo/ImplicitHierarchicalMesh/ihm.hxx CGoGN/include/Algo/ImplicitHierarchicalMesh/ihm.hxx +0 -0
- CGoGN/include/Algo/ImplicitHierarchicalMesh/ihm3.h CGoGN/include/Algo/ImplicitHierarchicalMesh/ihm3.h +505 -0
- CGoGN/include/Algo/ImplicitHierarchicalMesh/ihm3.hpp CGoGN/include/Algo/ImplicitHierarchicalMesh/ihm3.hpp +817 -0
- CGoGN/include/Algo/ImplicitHierarchicalMesh/subdivision.hppxx ...N/include/Algo/ImplicitHierarchicalMesh/subdivision.hppxx +0 -0
- CGoGN/include/Algo/ImplicitHierarchicalMesh/subdivision.hxx CGoGN/include/Algo/ImplicitHierarchicalMesh/subdivision.hxx +0 -0
- CGoGN/include/Algo/ImplicitHierarchicalMesh/subdivision3.h CGoGN/include/Algo/ImplicitHierarchicalMesh/subdivision3.h +144 -0
- CGoGN/include/Algo/ImplicitHierarchicalMesh/subdivision3.hpp CGoGN/include/Algo/ImplicitHierarchicalMesh/subdivision3.hpp +3131 -0
- CGoGN/include/Algo/Import/AHEM.h CGoGN/include/Algo/Import/AHEM.h +0 -0
- CGoGN/include/Algo/Import/AHEMImporter.h CGoGN/include/Algo/Import/AHEMImporter.h +0 -0
- CGoGN/include/Algo/Import/AHEMImporter.hpp CGoGN/include/Algo/Import/AHEMImporter.hpp +0 -0
- CGoGN/include/Algo/Import/AHEMImporterDefAttr.h CGoGN/include/Algo/Import/AHEMImporterDefAttr.h +0 -0
- CGoGN/include/Algo/Import/AHEMImporterDefAttr.hpp CGoGN/include/Algo/Import/AHEMImporterDefAttr.hpp +0 -0
- CGoGN/include/Algo/Import/import.h CGoGN/include/Algo/Import/import.h +0 -0
- CGoGN/include/Algo/Import/import.hpp CGoGN/include/Algo/Import/import.hpp +1268 -0
- CGoGN/include/Algo/Import/import2tables.h CGoGN/include/Algo/Import/import2tables.h +245 -0
- CGoGN/include/Algo/Import/import2tablesSurface.hpp CGoGN/include/Algo/Import/import2tablesSurface.hpp +1896 -0
- CGoGN/include/Algo/Import/import2tablesVolume.hpp CGoGN/include/Algo/Import/import2tablesVolume.hpp +1924 -0
- CGoGN/include/Algo/Import/importChoupi.hpp CGoGN/include/Algo/Import/importChoupi.hpp +0 -0
- CGoGN/include/Algo/Import/importFileTypes.h CGoGN/include/Algo/Import/importFileTypes.h +0 -0
- CGoGN/include/Algo/Import/importMRDAT.h CGoGN/include/Algo/Import/importMRDAT.h +0 -0
- CGoGN/include/Algo/Import/importMRDAT.hpp CGoGN/include/Algo/Import/importMRDAT.hpp +0 -0
- CGoGN/include/Algo/Import/importMoka.hpp CGoGN/include/Algo/Import/importMoka.hpp +0 -0
- CGoGN/include/Algo/Import/importObjTex.h CGoGN/include/Algo/Import/importObjTex.h +419 -0
- CGoGN/include/Algo/Import/importObjTex.hpp CGoGN/include/Algo/Import/importObjTex.hpp +1867 -0
- CGoGN/include/Algo/Import/importPlyData.h CGoGN/include/Algo/Import/importPlyData.h +144 -0
- CGoGN/include/Algo/Import/importSvg.h CGoGN/include/Algo/Import/importSvg.h +0 -0
- CGoGN/include/Algo/Import/importSvg.hpp CGoGN/include/Algo/Import/importSvg.hpp +0 -0
- CGoGN/include/Algo/Import/import_utils.h CGoGN/include/Algo/Import/import_utils.h +0 -0
- CGoGN/include/Algo/Import/ply.h CGoGN/include/Algo/Import/ply.h +0 -0
- CGoGN/include/Algo/LinearSolving/basic.h CGoGN/include/Algo/LinearSolving/basic.h +0 -0
- CGoGN/include/Algo/MC/buffer.h CGoGN/include/Algo/MC/buffer.h +0 -0
- CGoGN/include/Algo/MC/buffer.hpp CGoGN/include/Algo/MC/buffer.hpp +0 -0
- CGoGN/include/Algo/MC/bufferGen.h CGoGN/include/Algo/MC/bufferGen.h +0 -0
- CGoGN/include/Algo/MC/bufferGen.hpp CGoGN/include/Algo/MC/bufferGen.hpp +0 -0
- CGoGN/include/Algo/MC/image.h CGoGN/include/Algo/MC/image.h +388 -0
- CGoGN/include/Algo/MC/image.hpp CGoGN/include/Algo/MC/image.hpp +1145 -0
- CGoGN/include/Algo/MC/marchingcube.h CGoGN/include/Algo/MC/marchingcube.h +0 -0
- CGoGN/include/Algo/MC/marchingcube.hpp CGoGN/include/Algo/MC/marchingcube.hpp +1256 -0
- CGoGN/include/Algo/MC/marchingcubeGen.h CGoGN/include/Algo/MC/marchingcubeGen.h +0 -0
- CGoGN/include/Algo/MC/marchingcubeGen.hpp CGoGN/include/Algo/MC/marchingcubeGen.hpp +0 -0
- CGoGN/include/Algo/MC/tables.h CGoGN/include/Algo/MC/tables.h +111 -0
- CGoGN/include/Algo/MC/type.h CGoGN/include/Algo/MC/type.h +0 -0
- CGoGN/include/Algo/MC/windowing.h CGoGN/include/Algo/MC/windowing.h +0 -0
- CGoGN/include/Algo/Modelisation/boundEmb.h CGoGN/include/Algo/Modelisation/boundEmb.h +0 -0
- CGoGN/include/Algo/Modelisation/extrusion.h CGoGN/include/Algo/Modelisation/extrusion.h +232 -0
- CGoGN/include/Algo/Modelisation/extrusion.hpp CGoGN/include/Algo/Modelisation/extrusion.hpp +535 -0
- CGoGN/include/Algo/Modelisation/planeCutting.h CGoGN/include/Algo/Modelisation/planeCutting.h +99 -0
- CGoGN/include/Algo/Modelisation/planeCutting.hpp CGoGN/include/Algo/Modelisation/planeCutting.hpp +484 -0
- CGoGN/include/Algo/Modelisation/polyhedron.h CGoGN/include/Algo/Modelisation/polyhedron.h +159 -0
- CGoGN/include/Algo/Modelisation/polyhedron.hpp CGoGN/include/Algo/Modelisation/polyhedron.hpp +571 -0
- CGoGN/include/Algo/Modelisation/subdivision.h CGoGN/include/Algo/Modelisation/subdivision.h +210 -0
- CGoGN/include/Algo/Modelisation/subdivision.hpp CGoGN/include/Algo/Modelisation/subdivision.hpp +911 -0
- CGoGN/include/Algo/Modelisation/subdivision3.h CGoGN/include/Algo/Modelisation/subdivision3.h +122 -0
- CGoGN/include/Algo/Modelisation/subdivision3.hpp CGoGN/include/Algo/Modelisation/subdivision3.hpp +0 -0
- CGoGN/include/Algo/Modelisation/tetrahedralization.h CGoGN/include/Algo/Modelisation/tetrahedralization.h +0 -0
- CGoGN/include/Algo/Modelisation/tetrahedralization.hpp CGoGN/include/Algo/Modelisation/tetrahedralization.hpp +1462 -0
- CGoGN/include/Algo/Modelisation/triangulation.h CGoGN/include/Algo/Modelisation/triangulation.h +123 -0
- CGoGN/include/Algo/Modelisation/triangulation.hpp CGoGN/include/Algo/Modelisation/triangulation.hpp +0 -0
- CGoGN/include/Algo/Modelisation/voxellisation.h CGoGN/include/Algo/Modelisation/voxellisation.h +700 -0
- CGoGN/include/Algo/MovingObjects/particle_base.h CGoGN/include/Algo/MovingObjects/particle_base.h +87 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_2D.h CGoGN/include/Algo/MovingObjects/particle_cell_2D.h +0 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_2D.hpp CGoGN/include/Algo/MovingObjects/particle_cell_2D.hpp +0 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_2D_memo.h CGoGN/include/Algo/MovingObjects/particle_cell_2D_memo.h +0 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_2D_memo.hpp CGoGN/include/Algo/MovingObjects/particle_cell_2D_memo.hpp +386 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_2D_secured.h CGoGN/include/Algo/MovingObjects/particle_cell_2D_secured.h +0 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_2D_secured.hpp ...N/include/Algo/MovingObjects/particle_cell_2D_secured.hpp +0 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_2DandHalf.h CGoGN/include/Algo/MovingObjects/particle_cell_2DandHalf.h +0 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_2DandHalf.hpp CGoGN/include/Algo/MovingObjects/particle_cell_2DandHalf.hpp +0 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_2DandHalf_memo.h ...include/Algo/MovingObjects/particle_cell_2DandHalf_memo.h +0 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_2DandHalf_memo.hpp ...clude/Algo/MovingObjects/particle_cell_2DandHalf_memo.hpp +394 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_3D.h CGoGN/include/Algo/MovingObjects/particle_cell_3D.h +154 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_3D.hpp CGoGN/include/Algo/MovingObjects/particle_cell_3D.hpp +637 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_3D_memo.h CGoGN/include/Algo/MovingObjects/particle_cell_3D_memo.h +75 -0
- CGoGN/include/Algo/MovingObjects/particle_cell_3D_memo.hpp CGoGN/include/Algo/MovingObjects/particle_cell_3D_memo.hpp +466 -0
- CGoGN/include/Algo/Multiresolution/IHM2/ihm2_PrimalAdapt.h CGoGN/include/Algo/Multiresolution/IHM2/ihm2_PrimalAdapt.h +169 -0
- CGoGN/include/Algo/Multiresolution/IHM2/ihm2_PrimalAdapt.hpp CGoGN/include/Algo/Multiresolution/IHM2/ihm2_PrimalAdapt.hpp +510 -0
- CGoGN/include/Algo/Multiresolution/IHM2/ihm2_PrimalRegular.h CGoGN/include/Algo/Multiresolution/IHM2/ihm2_PrimalRegular.h +0 -0
- CGoGN/include/Algo/Multiresolution/IHM2/ihm2_PrimalRegular.hpp .../include/Algo/Multiresolution/IHM2/ihm2_PrimalRegular.hpp +0 -0
- CGoGN/include/Algo/Multiresolution/IHM3/ihm3_PrimalAdapt.h CGoGN/include/Algo/Multiresolution/IHM3/ihm3_PrimalAdapt.h +0 -0
- CGoGN/include/Algo/Multiresolution/IHM3/ihm3_PrimalAdapt.hpp CGoGN/include/Algo/Multiresolution/IHM3/ihm3_PrimalAdapt.hpp +957 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/Filters/Dual/catmullClark.h ...e/Algo/Multiresolution/Map2MR/Filters/Dual/catmullClark.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/Filters/Dual/dooSabin.h ...clude/Algo/Multiresolution/Map2MR/Filters/Dual/dooSabin.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/Filters/bertram.h CGoGN/include/Algo/Multiresolution/Map2MR/Filters/bertram.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/Filters/catmullClark.h ...nclude/Algo/Multiresolution/Map2MR/Filters/catmullClark.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/Filters/lerp.h CGoGN/include/Algo/Multiresolution/Map2MR/Filters/lerp.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/Filters/loop.h CGoGN/include/Algo/Multiresolution/Map2MR/Filters/loop.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/Filters/sqrt2.h CGoGN/include/Algo/Multiresolution/Map2MR/Filters/sqrt2.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/Filters/sqrt3.h CGoGN/include/Algo/Multiresolution/Map2MR/Filters/sqrt3.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/Masks/catmullClark.h .../include/Algo/Multiresolution/Map2MR/Masks/catmullClark.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/Masks/lerp.h CGoGN/include/Algo/Multiresolution/Map2MR/Masks/lerp.h +145 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/Masks/loop.h CGoGN/include/Algo/Multiresolution/Map2MR/Masks/loop.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/Masks/sqrt3.h CGoGN/include/Algo/Multiresolution/Map2MR/Masks/sqrt3.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/lerpAttributes.h CGoGN/include/Algo/Multiresolution/Map2MR/lerpAttributes.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/map2MR_DualRegular.h .../include/Algo/Multiresolution/Map2MR/map2MR_DualRegular.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/map2MR_DualRegular.hpp ...nclude/Algo/Multiresolution/Map2MR/map2MR_DualRegular.hpp +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/map2MR_PM.h CGoGN/include/Algo/Multiresolution/Map2MR/map2MR_PM.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/map2MR_PM.hpp CGoGN/include/Algo/Multiresolution/Map2MR/map2MR_PM.hpp +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/map2MR_PrimalAdapt.h .../include/Algo/Multiresolution/Map2MR/map2MR_PrimalAdapt.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/map2MR_PrimalAdapt.hpp ...nclude/Algo/Multiresolution/Map2MR/map2MR_PrimalAdapt.hpp +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/map2MR_PrimalRegular.h ...nclude/Algo/Multiresolution/Map2MR/map2MR_PrimalRegular.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map2MR/map2MR_PrimalRegular.hpp ...lude/Algo/Multiresolution/Map2MR/map2MR_PrimalRegular.hpp +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/Dual/dooSabin.h CGoGN/include/Algo/Multiresolution/Map3MR/Dual/dooSabin.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/Filters/bertram.h CGoGN/include/Algo/Multiresolution/Map3MR/Filters/bertram.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/Filters/bertramBoundary.h ...ude/Algo/Multiresolution/Map3MR/Filters/bertramBoundary.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/Filters/lerp.h CGoGN/include/Algo/Multiresolution/Map3MR/Filters/lerp.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/Filters/mcCrackenJoy.h ...nclude/Algo/Multiresolution/Map3MR/Filters/mcCrackenJoy.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/Filters/schaefer.h CGoGN/include/Algo/Multiresolution/Map3MR/Filters/schaefer.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/Masks/lerp.h CGoGN/include/Algo/Multiresolution/Map3MR/Masks/lerp.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/Masks/mcCrackenJoy.h .../include/Algo/Multiresolution/Map3MR/Masks/mcCrackenJoy.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/Masks/schaefer.h CGoGN/include/Algo/Multiresolution/Map3MR/Masks/schaefer.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/Masks/schemes_Primal.h ...nclude/Algo/Multiresolution/Map3MR/Masks/schemes_Primal.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/map3MR_DualRegular.h .../include/Algo/Multiresolution/Map3MR/map3MR_DualRegular.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/map3MR_DualRegular.hpp ...nclude/Algo/Multiresolution/Map3MR/map3MR_DualRegular.hpp +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/map3MR_PM.h CGoGN/include/Algo/Multiresolution/Map3MR/map3MR_PM.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/map3MR_PM.hpp CGoGN/include/Algo/Multiresolution/Map3MR/map3MR_PM.hpp +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/map3MR_PrimalAdapt.h .../include/Algo/Multiresolution/Map3MR/map3MR_PrimalAdapt.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/map3MR_PrimalAdapt.hpp ...nclude/Algo/Multiresolution/Map3MR/map3MR_PrimalAdapt.hpp +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/map3MR_PrimalRegular.h ...nclude/Algo/Multiresolution/Map3MR/map3MR_PrimalRegular.h +0 -0
- CGoGN/include/Algo/Multiresolution/Map3MR/map3MR_PrimalRegular.hpp ...lude/Algo/Multiresolution/Map3MR/map3MR_PrimalRegular.hpp +0 -0
- CGoGN/include/Algo/Multiresolution/filter.h CGoGN/include/Algo/Multiresolution/filter.h +183 -0
- CGoGN/include/Algo/ProgressiveMesh/pmesh.h CGoGN/include/Algo/ProgressiveMesh/pmesh.h +0 -0
- CGoGN/include/Algo/ProgressiveMesh/pmesh.hpp CGoGN/include/Algo/ProgressiveMesh/pmesh.hpp +0 -0
- CGoGN/include/Algo/ProgressiveMesh/vsplit.h CGoGN/include/Algo/ProgressiveMesh/vsplit.h +0 -0
- CGoGN/include/Algo/Remeshing/pliant.h CGoGN/include/Algo/Remeshing/pliant.h +0 -0
- CGoGN/include/Algo/Remeshing/pliant.hpp CGoGN/include/Algo/Remeshing/pliant.hpp +0 -0
- CGoGN/include/Algo/Render/Deprecated/gl3mapRender.h CGoGN/include/Algo/Render/Deprecated/gl3mapRender.h +0 -0
- CGoGN/include/Algo/Render/Deprecated/gl3mapRender.hpp CGoGN/include/Algo/Render/Deprecated/gl3mapRender.hpp +0 -0
- CGoGN/include/Algo/Render/Deprecated/vbo_MapRender.h CGoGN/include/Algo/Render/Deprecated/vbo_MapRender.h +0 -0
- CGoGN/include/Algo/Render/Deprecated/vbo_MapRender.hpp CGoGN/include/Algo/Render/Deprecated/vbo_MapRender.hpp +0 -0
- CGoGN/include/Algo/Render/Deprecated/vbo_VectorAttributeRender.h ...nclude/Algo/Render/Deprecated/vbo_VectorAttributeRender.h +0 -0
- CGoGN/include/Algo/Render/Deprecated/vbo_VectorAttributeRender.hpp ...lude/Algo/Render/Deprecated/vbo_VectorAttributeRender.hpp +0 -0
- CGoGN/include/Algo/Render/GL1/map_glRender.h CGoGN/include/Algo/Render/GL1/map_glRender.h +0 -0
- CGoGN/include/Algo/Render/GL1/map_glRender.hpp CGoGN/include/Algo/Render/GL1/map_glRender.hpp +0 -0
- CGoGN/include/Algo/Render/GL1/renderFunctor.h CGoGN/include/Algo/Render/GL1/renderFunctor.h +0 -0
- CGoGN/include/Algo/Render/GL1/renderFunctor.hpp CGoGN/include/Algo/Render/GL1/renderFunctor.hpp +0 -0
- CGoGN/include/Algo/Render/GL1/topo_render.h CGoGN/include/Algo/Render/GL1/topo_render.h +0 -0
- CGoGN/include/Algo/Render/GL1/topo_render.hpp CGoGN/include/Algo/Render/GL1/topo_render.hpp +622 -0
- CGoGN/include/Algo/Render/GL2/colorPerEdgeRender.h CGoGN/include/Algo/Render/GL2/colorPerEdgeRender.h +0 -0
- CGoGN/include/Algo/Render/GL2/colorPerEdgeRender.hpp CGoGN/include/Algo/Render/GL2/colorPerEdgeRender.hpp +0 -0
- CGoGN/include/Algo/Render/GL2/colorPerFaceRender.h CGoGN/include/Algo/Render/GL2/colorPerFaceRender.h +109 -0
- CGoGN/include/Algo/Render/GL2/colorPerFaceRender.hpp CGoGN/include/Algo/Render/GL2/colorPerFaceRender.hpp +268 -0
- CGoGN/include/Algo/Render/GL2/dataPerFaceRender.h CGoGN/include/Algo/Render/GL2/dataPerFaceRender.h +0 -0
- CGoGN/include/Algo/Render/GL2/dataPerFaceRender.hpp CGoGN/include/Algo/Render/GL2/dataPerFaceRender.hpp +0 -0
- CGoGN/include/Algo/Render/GL2/drawerCells.h CGoGN/include/Algo/Render/GL2/drawerCells.h +0 -0
- CGoGN/include/Algo/Render/GL2/drawerCells.hpp CGoGN/include/Algo/Render/GL2/drawerCells.hpp +0 -0
- CGoGN/include/Algo/Render/GL2/explodeVolumeRender.h CGoGN/include/Algo/Render/GL2/explodeVolumeRender.h +0 -0
- CGoGN/include/Algo/Render/GL2/explodeVolumeRender.hpp CGoGN/include/Algo/Render/GL2/explodeVolumeRender.hpp +783 -0
- CGoGN/include/Algo/Render/GL2/mapRender.h CGoGN/include/Algo/Render/GL2/mapRender.h +268 -0
- CGoGN/include/Algo/Render/GL2/mapRender.hpp CGoGN/include/Algo/Render/GL2/mapRender.hpp +609 -0
- CGoGN/include/Algo/Render/GL2/topo3PrimalRender.h CGoGN/include/Algo/Render/GL2/topo3PrimalRender.h +0 -0
- CGoGN/include/Algo/Render/GL2/topo3PrimalRender.hpp CGoGN/include/Algo/Render/GL2/topo3PrimalRender.hpp +654 -0
- CGoGN/include/Algo/Render/GL2/topo3Render.h CGoGN/include/Algo/Render/GL2/topo3Render.h +0 -0
- CGoGN/include/Algo/Render/GL2/topo3Render.hpp CGoGN/include/Algo/Render/GL2/topo3Render.hpp +1310 -0
- CGoGN/include/Algo/Render/GL2/topoPrimalRender.h CGoGN/include/Algo/Render/GL2/topoPrimalRender.h +0 -0
- CGoGN/include/Algo/Render/GL2/topoPrimalRender.hpp CGoGN/include/Algo/Render/GL2/topoPrimalRender.hpp +613 -0
- CGoGN/include/Algo/Render/GL2/topoRender.h CGoGN/include/Algo/Render/GL2/topoRender.h +382 -0
- CGoGN/include/Algo/Render/GL2/topoRender.hpp CGoGN/include/Algo/Render/GL2/topoRender.hpp +679 -0
- CGoGN/include/Algo/Render/SVG/mapSVGRender.h CGoGN/include/Algo/Render/SVG/mapSVGRender.h +0 -0
- CGoGN/include/Algo/Render/SVG/mapSVGRender.hpp CGoGN/include/Algo/Render/SVG/mapSVGRender.hpp +0 -0
- CGoGN/include/Algo/Selection/collector.h CGoGN/include/Algo/Selection/collector.h +0 -0
- CGoGN/include/Algo/Selection/collector.hpp CGoGN/include/Algo/Selection/collector.hpp +0 -0
- CGoGN/include/Algo/Selection/raySelectFunctor.hpp CGoGN/include/Algo/Selection/raySelectFunctor.hpp +0 -0
- CGoGN/include/Algo/Selection/raySelector.h CGoGN/include/Algo/Selection/raySelector.h +0 -0
- CGoGN/include/Algo/Selection/raySelector.hpp CGoGN/include/Algo/Selection/raySelector.hpp +819 -0
- CGoGN/include/Algo/Simulation/ShapeMatching/shapeMatching.h CGoGN/include/Algo/Simulation/ShapeMatching/shapeMatching.h +0 -0
- CGoGN/include/Algo/Simulation/ShapeMatching/shapeMatching.hpp ...N/include/Algo/Simulation/ShapeMatching/shapeMatching.hpp +0 -0
- CGoGN/include/Algo/Simulation/ShapeMatching/shapeMatchingLinear.h ...clude/Algo/Simulation/ShapeMatching/shapeMatchingLinear.h +0 -0
- CGoGN/include/Algo/Simulation/ShapeMatching/shapeMatchingLinear.hpp ...ude/Algo/Simulation/ShapeMatching/shapeMatchingLinear.hpp +0 -0
- CGoGN/include/Algo/Simulation/ShapeMatching/shapeMatchingQuadratic.h ...de/Algo/Simulation/ShapeMatching/shapeMatchingQuadratic.h +0 -0
- CGoGN/include/Algo/Simulation/ShapeMatching/shapeMatchingQuadratic.hpp .../Algo/Simulation/ShapeMatching/shapeMatchingQuadratic.hpp +0 -0
- CGoGN/include/Algo/Tiling/Surface/hexagonal.h CGoGN/include/Algo/Tiling/Surface/hexagonal.h +0 -0
- CGoGN/include/Algo/Tiling/Surface/hexagonal.hpp CGoGN/include/Algo/Tiling/Surface/hexagonal.hpp +0 -0
- CGoGN/include/Algo/Tiling/Surface/square.h CGoGN/include/Algo/Tiling/Surface/square.h +0 -0
- CGoGN/include/Algo/Tiling/Surface/square.hpp CGoGN/include/Algo/Tiling/Surface/square.hpp +0 -0
- CGoGN/include/Algo/Tiling/Surface/triangular.h CGoGN/include/Algo/Tiling/Surface/triangular.h +0 -0
- CGoGN/include/Algo/Tiling/Surface/triangular.hpp CGoGN/include/Algo/Tiling/Surface/triangular.hpp +0 -0
- CGoGN/include/Algo/Tiling/Volume/cubic.h CGoGN/include/Algo/Tiling/Volume/cubic.h +0 -0
- CGoGN/include/Algo/Tiling/Volume/cubic.hpp CGoGN/include/Algo/Tiling/Volume/cubic.hpp +245 -0
- CGoGN/include/Algo/Tiling/tiling.h CGoGN/include/Algo/Tiling/tiling.h +0 -0
- CGoGN/include/Algo/Tiling/tiling.hpp CGoGN/include/Algo/Tiling/tiling.hpp +0 -0
- CGoGN/include/Algo/Topo/Map2/uniformOrientation.h CGoGN/include/Algo/Topo/Map2/uniformOrientation.h +0 -0
- CGoGN/include/Algo/Topo/Map2/uniformOrientation.hpp CGoGN/include/Algo/Topo/Map2/uniformOrientation.hpp +0 -0
- CGoGN/include/Algo/Topo/basic.h CGoGN/include/Algo/Topo/basic.h +0 -0
- CGoGN/include/Algo/Topo/embedding.h CGoGN/include/Algo/Topo/embedding.h +0 -0
- CGoGN/include/Algo/Topo/simplex.h CGoGN/include/Algo/Topo/simplex.h +0 -0
- CGoGN/include/Container/attributeContainer.h CGoGN/include/Container/attributeContainer.h +1041 -0
- CGoGN/include/Container/attributeContainer.hpp CGoGN/include/Container/attributeContainer.hpp +509 -0
- CGoGN/include/Container/attributeMultiVector.h CGoGN/include/Container/attributeMultiVector.h +338 -0
- CGoGN/include/Container/attributeMultiVector.hpp CGoGN/include/Container/attributeMultiVector.hpp +512 -0
- CGoGN/include/Container/attributeMultiVectorBool.hpp CGoGN/include/Container/attributeMultiVectorBool.hpp +414 -0
- CGoGN/include/Container/containerBrowser.h CGoGN/include/Container/containerBrowser.h +0 -0
- CGoGN/include/Container/containerBrowser.hpp CGoGN/include/Container/containerBrowser.hpp +0 -0
- CGoGN/include/Container/convert.h CGoGN/include/Container/convert.h +111 -0
- CGoGN/include/Container/fakeAttribute.h CGoGN/include/Container/fakeAttribute.h +0 -0
- CGoGN/include/Container/holeblock.hXX CGoGN/include/Container/holeblock.hXX +0 -0
- CGoGN/include/Container/holeblockref.h CGoGN/include/Container/holeblockref.h +199 -0
- CGoGN/include/Container/registered.h CGoGN/include/Container/registered.h +0 -0
- CGoGN/include/Container/sizeblock.h CGoGN/include/Container/sizeblock.h +0 -0
- CGoGN/include/Geometry/basic.h CGoGN/include/Geometry/basic.h +145 -0
- CGoGN/include/Geometry/basic.hpp CGoGN/include/Geometry/basic.hpp +0 -0
- CGoGN/include/Geometry/bounding_box.h CGoGN/include/Geometry/bounding_box.h +0 -0
- CGoGN/include/Geometry/bounding_box.hpp CGoGN/include/Geometry/bounding_box.hpp +368 -0
- CGoGN/include/Geometry/distances.h CGoGN/include/Geometry/distances.h +0 -0
- CGoGN/include/Geometry/distances.hpp CGoGN/include/Geometry/distances.hpp +0 -0
- CGoGN/include/Geometry/frame.h CGoGN/include/Geometry/frame.h +0 -0
- CGoGN/include/Geometry/frame.hpp CGoGN/include/Geometry/frame.hpp +0 -0
- CGoGN/include/Geometry/inclusion.h CGoGN/include/Geometry/inclusion.h +0 -0
- CGoGN/include/Geometry/inclusion.hpp CGoGN/include/Geometry/inclusion.hpp +174 -0
- CGoGN/include/Geometry/intersection.h CGoGN/include/Geometry/intersection.h +0 -0
- CGoGN/include/Geometry/intersection.hpp CGoGN/include/Geometry/intersection.hpp +0 -0
- CGoGN/include/Geometry/matrix.h CGoGN/include/Geometry/matrix.h +0 -0
- CGoGN/include/Geometry/matrix.hpp CGoGN/include/Geometry/matrix.hpp +0 -0
- CGoGN/include/Geometry/orientation.h CGoGN/include/Geometry/orientation.h +0 -0
- CGoGN/include/Geometry/orientation.hpp CGoGN/include/Geometry/orientation.hpp +0 -0
- CGoGN/include/Geometry/plane_3d.h CGoGN/include/Geometry/plane_3d.h +121 -0
- CGoGN/include/Geometry/plane_3d.hpp CGoGN/include/Geometry/plane_3d.hpp +180 -0
- CGoGN/include/Geometry/tensor.h CGoGN/include/Geometry/tensor.h +0 -0
- CGoGN/include/Geometry/tensor.hpp CGoGN/include/Geometry/tensor.hpp +0 -0
- CGoGN/include/Geometry/transfo.h CGoGN/include/Geometry/transfo.h +0 -0
- CGoGN/include/Geometry/transfo.hpp CGoGN/include/Geometry/transfo.hpp +0 -0
- CGoGN/include/Geometry/vector_gen.h CGoGN/include/Geometry/vector_gen.h +267 -0
- CGoGN/include/Geometry/vector_gen.hpp CGoGN/include/Geometry/vector_gen.hpp +495 -0
- CGoGN/include/Topology/dll.h CGoGN/include/Topology/dll.h +36 -0
- CGoGN/include/Topology/generic/attributeHandler.h CGoGN/include/Topology/generic/attributeHandler.h +0 -0
- CGoGN/include/Topology/generic/attributeHandler.hpp CGoGN/include/Topology/generic/attributeHandler.hpp +389 -0
- CGoGN/include/Topology/generic/autoAttributeHandler.h CGoGN/include/Topology/generic/autoAttributeHandler.h +0 -0
- CGoGN/include/Topology/generic/cellmarker.h CGoGN/include/Topology/generic/cellmarker.h +582 -0
- CGoGN/include/Topology/generic/cells.h CGoGN/include/Topology/generic/cells.h +0 -0
- CGoGN/include/Topology/generic/cells_macros.h CGoGN/include/Topology/generic/cells_macros.h +115 -0
- CGoGN/include/Topology/generic/dart.h CGoGN/include/Topology/generic/dart.h +0 -0
- CGoGN/include/Topology/generic/dartmarker.h CGoGN/include/Topology/generic/dartmarker.h +519 -0
- CGoGN/include/Topology/generic/functor.h CGoGN/include/Topology/generic/functor.h +0 -0
- CGoGN/include/Topology/generic/genericmap.h CGoGN/include/Topology/generic/genericmap.h +551 -0
- CGoGN/include/Topology/generic/genericmap.hpp CGoGN/include/Topology/generic/genericmap.hpp +387 -0
- CGoGN/include/Topology/generic/mapBrowser.h CGoGN/include/Topology/generic/mapBrowser.h +0 -0
- CGoGN/include/Topology/generic/mapCommon.h CGoGN/include/Topology/generic/mapCommon.h +0 -0
- CGoGN/include/Topology/generic/mapCommon.hpp CGoGN/include/Topology/generic/mapCommon.hpp +453 -0
- CGoGN/include/Topology/generic/mapImpl/mapMono.h CGoGN/include/Topology/generic/mapImpl/mapMono.h +161 -0
- CGoGN/include/Topology/generic/mapImpl/mapMono.hpp CGoGN/include/Topology/generic/mapImpl/mapMono.hpp +0 -0
- CGoGN/include/Topology/generic/mapImpl/mapMulti.h CGoGN/include/Topology/generic/mapImpl/mapMulti.h +319 -0
- CGoGN/include/Topology/generic/mapImpl/mapMulti.hpp CGoGN/include/Topology/generic/mapImpl/mapMulti.hpp +414 -0
- CGoGN/include/Topology/generic/marker.h CGoGN/include/Topology/generic/marker.h +0 -0
- CGoGN/include/Topology/generic/multi3Attribs.h CGoGN/include/Topology/generic/multi3Attribs.h +0 -0
- CGoGN/include/Topology/generic/multi4Attribs.h CGoGN/include/Topology/generic/multi4Attribs.h +0 -0
- CGoGN/include/Topology/generic/multiAttribs.h CGoGN/include/Topology/generic/multiAttribs.h +515 -0
- CGoGN/include/Topology/generic/parameters.h CGoGN/include/Topology/generic/parameters.h +0 -0
- CGoGN/include/Topology/generic/simplices.h CGoGN/include/Topology/generic/simplices.h +0 -0
- CGoGN/include/Topology/generic/traversor/iterTrav.h CGoGN/include/Topology/generic/traversor/iterTrav.h +0 -0
- CGoGN/include/Topology/generic/traversor/traversor1.h CGoGN/include/Topology/generic/traversor/traversor1.h +0 -0
- CGoGN/include/Topology/generic/traversor/traversor1.hpp CGoGN/include/Topology/generic/traversor/traversor1.hpp +0 -0
- CGoGN/include/Topology/generic/traversor/traversor1Virt.h CGoGN/include/Topology/generic/traversor/traversor1Virt.h +0 -0
- CGoGN/include/Topology/generic/traversor/traversor1Virt.hpp CGoGN/include/Topology/generic/traversor/traversor1Virt.hpp +0 -0
- CGoGN/include/Topology/generic/traversor/traversor2.h CGoGN/include/Topology/generic/traversor/traversor2.h +0 -0
- CGoGN/include/Topology/generic/traversor/traversor2.hpp CGoGN/include/Topology/generic/traversor/traversor2.hpp +0 -0
- CGoGN/include/Topology/generic/traversor/traversor2Virt.h CGoGN/include/Topology/generic/traversor/traversor2Virt.h +0 -0
- CGoGN/include/Topology/generic/traversor/traversor2Virt.hpp CGoGN/include/Topology/generic/traversor/traversor2Virt.hpp +0 -0
- CGoGN/include/Topology/generic/traversor/traversor2_closed.h CGoGN/include/Topology/generic/traversor/traversor2_closed.h +0 -0
- CGoGN/include/Topology/generic/traversor/traversor2_closed.hpp .../include/Topology/generic/traversor/traversor2_closed.hpp +0 -0
- CGoGN/include/Topology/generic/traversor/traversor3.h CGoGN/include/Topology/generic/traversor/traversor3.h +613 -0
- CGoGN/include/Topology/generic/traversor/traversor3.hpp CGoGN/include/Topology/generic/traversor/traversor3.hpp +426 -0
- CGoGN/include/Topology/generic/traversor/traversor3Virt.h CGoGN/include/Topology/generic/traversor/traversor3Virt.h +0 -0
- CGoGN/include/Topology/generic/traversor/traversor3Virt.hpp CGoGN/include/Topology/generic/traversor/traversor3Virt.hpp +0 -0
- CGoGN/include/Topology/generic/traversor/traversorCell.h CGoGN/include/Topology/generic/traversor/traversorCell.h +0 -0
- CGoGN/include/Topology/generic/traversor/traversorCell.hpp CGoGN/include/Topology/generic/traversor/traversorCell.hpp +0 -0
- CGoGN/include/Topology/generic/traversor/traversorCellVirt.h CGoGN/include/Topology/generic/traversor/traversorCellVirt.h +0 -0
- CGoGN/include/Topology/generic/traversor/traversorCellVirt.hpp .../include/Topology/generic/traversor/traversorCellVirt.hpp +0 -0
- CGoGN/include/Topology/generic/traversor/traversorDoO.h CGoGN/include/Topology/generic/traversor/traversorDoO.h +0 -0
- CGoGN/include/Topology/generic/traversor/traversorDoO.hpp CGoGN/include/Topology/generic/traversor/traversorDoO.hpp +0 -0
- CGoGN/include/Topology/generic/traversor/traversorFactory.h CGoGN/include/Topology/generic/traversor/traversorFactory.h +88 -0
- CGoGN/include/Topology/generic/traversor/traversorFactory.hpp ...N/include/Topology/generic/traversor/traversorFactory.hpp +269 -0
- CGoGN/include/Topology/generic/traversor/traversorGen.h CGoGN/include/Topology/generic/traversor/traversorGen.h +0 -0
- CGoGN/include/Topology/gmap/embeddedGMap2.h CGoGN/include/Topology/gmap/embeddedGMap2.h +158 -0
- CGoGN/include/Topology/gmap/embeddedGMap3.h CGoGN/include/Topology/gmap/embeddedGMap3.h +110 -0
- CGoGN/include/Topology/gmap/gmap0.h CGoGN/include/Topology/gmap/gmap0.h +0 -0
- CGoGN/include/Topology/gmap/gmap0.hpp CGoGN/include/Topology/gmap/gmap0.hpp +0 -0
- CGoGN/include/Topology/gmap/gmap1.h CGoGN/include/Topology/gmap/gmap1.h +0 -0
- CGoGN/include/Topology/gmap/gmap1.hpp CGoGN/include/Topology/gmap/gmap1.hpp +0 -0
- CGoGN/include/Topology/gmap/gmap2.h CGoGN/include/Topology/gmap/gmap2.h +0 -0
- CGoGN/include/Topology/gmap/gmap2.hpp CGoGN/include/Topology/gmap/gmap2.hpp +1285 -0
- CGoGN/include/Topology/gmap/gmap3.h CGoGN/include/Topology/gmap/gmap3.h +0 -0
- CGoGN/include/Topology/gmap/gmap3.hpp CGoGN/include/Topology/gmap/gmap3.hpp +1299 -0
- CGoGN/include/Topology/hypermap/ehypermap1.h CGoGN/include/Topology/hypermap/ehypermap1.h +0 -0
- CGoGN/include/Topology/hypermap/hyperbasemap.h CGoGN/include/Topology/hypermap/hyperbasemap.h +0 -0
- CGoGN/include/Topology/hypermap/hyperdart.h CGoGN/include/Topology/hypermap/hyperdart.h +0 -0
- CGoGN/include/Topology/hypermap/hypermap1.h CGoGN/include/Topology/hypermap/hypermap1.h +0 -0
- CGoGN/include/Topology/hypermap/hypermap2.hpp CGoGN/include/Topology/hypermap/hypermap2.hpp +0 -0
- CGoGN/include/Topology/ihmap/ihm2.h CGoGN/include/Topology/ihmap/ihm2.h +308 -0
- CGoGN/include/Topology/ihmap/ihm2.hpp CGoGN/include/Topology/ihmap/ihm2.hpp +509 -0
- CGoGN/include/Topology/ihmap/ihm3.h CGoGN/include/Topology/ihmap/ihm3.h +304 -0
- CGoGN/include/Topology/ihmap/ihm3.hpp CGoGN/include/Topology/ihmap/ihm3.hpp +0 -0
- CGoGN/include/Topology/map/embeddedMap2.h CGoGN/include/Topology/map/embeddedMap2.h +178 -0
- CGoGN/include/Topology/map/embeddedMap2_MR.h CGoGN/include/Topology/map/embeddedMap2_MR.h +165 -0
- CGoGN/include/Topology/map/embeddedMap3.h CGoGN/include/Topology/map/embeddedMap3.h +155 -0
- CGoGN/include/Topology/map/map1.h CGoGN/include/Topology/map/map1.h +0 -0
- CGoGN/include/Topology/map/map1.hpp CGoGN/include/Topology/map/map1.hpp +0 -0
- CGoGN/include/Topology/map/map2.h CGoGN/include/Topology/map/map2.h +0 -0
- CGoGN/include/Topology/map/map2.hpp CGoGN/include/Topology/map/map2.hpp +1301 -0
- CGoGN/include/Topology/map/map2.hpp~ CGoGN/include/Topology/map/map2.hpp~ +1301 -0
- CGoGN/include/Topology/map/map2t.h CGoGN/include/Topology/map/map2t.h +349 -0
- CGoGN/include/Topology/map/map2t.hpp CGoGN/include/Topology/map/map2t.hpp +259 -0
- CGoGN/include/Topology/map/map3.h CGoGN/include/Topology/map/map3.h +0 -0
- CGoGN/include/Topology/map/map3.hpp CGoGN/include/Topology/map/map3.hpp +1898 -0
- CGoGN/include/Topology/xmap/exmap.h CGoGN/include/Topology/xmap/exmap.h +0 -0
- CGoGN/include/Topology/xmap/exmap.hpp CGoGN/include/Topology/xmap/exmap.hpp +0 -0
- CGoGN/include/Topology/xmap/xmap.h CGoGN/include/Topology/xmap/xmap.h +0 -0
- CGoGN/include/Topology/xmap/xmap.hpp CGoGN/include/Topology/xmap/xmap.hpp +0 -0
- CGoGN/include/Utils/GL3/gl3.h CGoGN/include/Utils/GL3/gl3.h +0 -0
- CGoGN/include/Utils/GLSLShader.h CGoGN/include/Utils/GLSLShader.h +507 -0
- CGoGN/include/Utils/Qt/macgl3.h CGoGN/include/Utils/Qt/macgl3.h +0 -0
- CGoGN/include/Utils/Qt/qtInputs.h CGoGN/include/Utils/Qt/qtInputs.h +196 -0
- CGoGN/include/Utils/Qt/qtQGLV.h CGoGN/include/Utils/Qt/qtQGLV.h +491 -0
- CGoGN/include/Utils/Qt/qtQGLV_glw.h CGoGN/include/Utils/Qt/qtQGLV_glw.h +119 -0
- CGoGN/include/Utils/Qt/qtSimple.h CGoGN/include/Utils/Qt/qtSimple.h +476 -0
- CGoGN/include/Utils/Qt/qtcolorschooser.h CGoGN/include/Utils/Qt/qtcolorschooser.h +112 -0
- CGoGN/include/Utils/Qt/qtgl.h CGoGN/include/Utils/Qt/qtgl.h +261 -0
- CGoGN/include/Utils/Qt/qtpopup.h CGoGN/include/Utils/Qt/qtpopup.h +98 -0
- CGoGN/include/Utils/Qt/qtui.h CGoGN/include/Utils/Qt/qtui.h +0 -0
- CGoGN/include/Utils/Shaders/shaderColorPerVertex.frag CGoGN/include/Utils/Shaders/shaderColorPerVertex.frag +14 -0
- CGoGN/include/Utils/Shaders/shaderColorPerVertex.h CGoGN/include/Utils/Shaders/shaderColorPerVertex.h +80 -0
- CGoGN/include/Utils/Shaders/shaderColorPerVertex.vert CGoGN/include/Utils/Shaders/shaderColorPerVertex.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderCustom.frag CGoGN/include/Utils/Shaders/shaderCustom.frag +0 -0
- CGoGN/include/Utils/Shaders/shaderCustom.geom CGoGN/include/Utils/Shaders/shaderCustom.geom +0 -0
- CGoGN/include/Utils/Shaders/shaderCustom.h CGoGN/include/Utils/Shaders/shaderCustom.h +56 -0
- CGoGN/include/Utils/Shaders/shaderCustom.vert CGoGN/include/Utils/Shaders/shaderCustom.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderCustomTex.frag CGoGN/include/Utils/Shaders/shaderCustomTex.frag +13 -0
- CGoGN/include/Utils/Shaders/shaderCustomTex.geom CGoGN/include/Utils/Shaders/shaderCustomTex.geom +0 -0
- CGoGN/include/Utils/Shaders/shaderCustomTex.h CGoGN/include/Utils/Shaders/shaderCustomTex.h +70 -0
- CGoGN/include/Utils/Shaders/shaderCustomTex.vert CGoGN/include/Utils/Shaders/shaderCustomTex.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderEnvMap.frag CGoGN/include/Utils/Shaders/shaderEnvMap.frag +41 -0
- CGoGN/include/Utils/Shaders/shaderEnvMap.h CGoGN/include/Utils/Shaders/shaderEnvMap.h +172 -0
- CGoGN/include/Utils/Shaders/shaderEnvMap.vert CGoGN/include/Utils/Shaders/shaderEnvMap.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderExplodeSmoothVolumes.frag CGoGN/include/Utils/Shaders/shaderExplodeSmoothVolumes.frag +0 -0
- CGoGN/include/Utils/Shaders/shaderExplodeSmoothVolumes.geom CGoGN/include/Utils/Shaders/shaderExplodeSmoothVolumes.geom +0 -0
- CGoGN/include/Utils/Shaders/shaderExplodeSmoothVolumes.h CGoGN/include/Utils/Shaders/shaderExplodeSmoothVolumes.h +99 -0
- CGoGN/include/Utils/Shaders/shaderExplodeSmoothVolumes.vert CGoGN/include/Utils/Shaders/shaderExplodeSmoothVolumes.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderExplodeVolumes.frag CGoGN/include/Utils/Shaders/shaderExplodeVolumes.frag +0 -0
- CGoGN/include/Utils/Shaders/shaderExplodeVolumes.geom CGoGN/include/Utils/Shaders/shaderExplodeVolumes.geom +0 -0
- CGoGN/include/Utils/Shaders/shaderExplodeVolumes.h CGoGN/include/Utils/Shaders/shaderExplodeVolumes.h +100 -0
- CGoGN/include/Utils/Shaders/shaderExplodeVolumes.vert CGoGN/include/Utils/Shaders/shaderExplodeVolumes.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderExplodeVolumesLines.frag CGoGN/include/Utils/Shaders/shaderExplodeVolumesLines.frag +0 -0
- CGoGN/include/Utils/Shaders/shaderExplodeVolumesLines.geom CGoGN/include/Utils/Shaders/shaderExplodeVolumesLines.geom +0 -0
- CGoGN/include/Utils/Shaders/shaderExplodeVolumesLines.h CGoGN/include/Utils/Shaders/shaderExplodeVolumesLines.h +82 -0
- CGoGN/include/Utils/Shaders/shaderExplodeVolumesLines.vert CGoGN/include/Utils/Shaders/shaderExplodeVolumesLines.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderFlat.frag CGoGN/include/Utils/Shaders/shaderFlat.frag +0 -0
- CGoGN/include/Utils/Shaders/shaderFlat.geom CGoGN/include/Utils/Shaders/shaderFlat.geom +0 -0
- CGoGN/include/Utils/Shaders/shaderFlat.h CGoGN/include/Utils/Shaders/shaderFlat.h +88 -0
- CGoGN/include/Utils/Shaders/shaderFlat.vert CGoGN/include/Utils/Shaders/shaderFlat.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderFlatColor.frag CGoGN/include/Utils/Shaders/shaderFlatColor.frag +0 -0
- CGoGN/include/Utils/Shaders/shaderFlatColor.geom CGoGN/include/Utils/Shaders/shaderFlatColor.geom +0 -0
- CGoGN/include/Utils/Shaders/shaderFlatColor.h CGoGN/include/Utils/Shaders/shaderFlatColor.h +83 -0
- CGoGN/include/Utils/Shaders/shaderFlatColor.vert CGoGN/include/Utils/Shaders/shaderFlatColor.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderIsoLines.frag CGoGN/include/Utils/Shaders/shaderIsoLines.frag +0 -0
- CGoGN/include/Utils/Shaders/shaderIsoLines.geom CGoGN/include/Utils/Shaders/shaderIsoLines.geom +0 -0
- CGoGN/include/Utils/Shaders/shaderIsoLines.h CGoGN/include/Utils/Shaders/shaderIsoLines.h +123 -0
- CGoGN/include/Utils/Shaders/shaderIsoLines.vert CGoGN/include/Utils/Shaders/shaderIsoLines.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderMatCustom.frag CGoGN/include/Utils/Shaders/shaderMatCustom.frag +43 -0
- CGoGN/include/Utils/Shaders/shaderMatCustom.geom CGoGN/include/Utils/Shaders/shaderMatCustom.geom +0 -0
- CGoGN/include/Utils/Shaders/shaderMatCustom.h CGoGN/include/Utils/Shaders/shaderMatCustom.h +97 -0
- CGoGN/include/Utils/Shaders/shaderMatCustom.vert CGoGN/include/Utils/Shaders/shaderMatCustom.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderPhong.frag CGoGN/include/Utils/Shaders/shaderPhong.frag +56 -0
- CGoGN/include/Utils/Shaders/shaderPhong.h CGoGN/include/Utils/Shaders/shaderPhong.h +126 -0
- CGoGN/include/Utils/Shaders/shaderPhong.vert CGoGN/include/Utils/Shaders/shaderPhong.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderPhongTexture.frag CGoGN/include/Utils/Shaders/shaderPhongTexture.frag +39 -0
- CGoGN/include/Utils/Shaders/shaderPhongTexture.h CGoGN/include/Utils/Shaders/shaderPhongTexture.h +145 -0
- CGoGN/include/Utils/Shaders/shaderPhongTexture.vert CGoGN/include/Utils/Shaders/shaderPhongTexture.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderRadiancePerVertex.frag CGoGN/include/Utils/Shaders/shaderRadiancePerVertex.frag +9 -0
- CGoGN/include/Utils/Shaders/shaderRadiancePerVertex.geom CGoGN/include/Utils/Shaders/shaderRadiancePerVertex.geom +16 -0
- CGoGN/include/Utils/Shaders/shaderRadiancePerVertex.h CGoGN/include/Utils/Shaders/shaderRadiancePerVertex.h +95 -0
- CGoGN/include/Utils/Shaders/shaderRadiancePerVertex.vert CGoGN/include/Utils/Shaders/shaderRadiancePerVertex.vert +107 -0
- CGoGN/include/Utils/Shaders/shaderRadiancePerVertexInterp.frag .../include/Utils/Shaders/shaderRadiancePerVertexInterp.frag +130 -0
- CGoGN/include/Utils/Shaders/shaderRadiancePerVertexInterp.geom .../include/Utils/Shaders/shaderRadiancePerVertexInterp.geom +40 -0
- CGoGN/include/Utils/Shaders/shaderRadiancePerVertexInterp.vert .../include/Utils/Shaders/shaderRadiancePerVertexInterp.vert +22 -0
- CGoGN/include/Utils/Shaders/shaderScalarField.frag CGoGN/include/Utils/Shaders/shaderScalarField.frag +17 -0
- CGoGN/include/Utils/Shaders/shaderScalarField.h CGoGN/include/Utils/Shaders/shaderScalarField.h +86 -0
- CGoGN/include/Utils/Shaders/shaderScalarField.vert CGoGN/include/Utils/Shaders/shaderScalarField.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderSimpleColor.frag CGoGN/include/Utils/Shaders/shaderSimpleColor.frag +13 -0
- CGoGN/include/Utils/Shaders/shaderSimpleColor.h CGoGN/include/Utils/Shaders/shaderSimpleColor.h +68 -0
- CGoGN/include/Utils/Shaders/shaderSimpleColor.vert CGoGN/include/Utils/Shaders/shaderSimpleColor.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderSimpleFlat.frag CGoGN/include/Utils/Shaders/shaderSimpleFlat.frag +52 -0
- CGoGN/include/Utils/Shaders/shaderSimpleFlat.h CGoGN/include/Utils/Shaders/shaderSimpleFlat.h +107 -0
- CGoGN/include/Utils/Shaders/shaderSimpleFlat.vert CGoGN/include/Utils/Shaders/shaderSimpleFlat.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderSimpleTexture.frag CGoGN/include/Utils/Shaders/shaderSimpleTexture.frag +10 -0
- CGoGN/include/Utils/Shaders/shaderSimpleTexture.h CGoGN/include/Utils/Shaders/shaderSimpleTexture.h +93 -0
- CGoGN/include/Utils/Shaders/shaderSimpleTexture.vert CGoGN/include/Utils/Shaders/shaderSimpleTexture.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderTextureDepth.frag CGoGN/include/Utils/Shaders/shaderTextureDepth.frag +12 -0
- CGoGN/include/Utils/Shaders/shaderTextureDepth.h CGoGN/include/Utils/Shaders/shaderTextureDepth.h +86 -0
- CGoGN/include/Utils/Shaders/shaderTextureDepth.vert CGoGN/include/Utils/Shaders/shaderTextureDepth.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderTextureMask.frag CGoGN/include/Utils/Shaders/shaderTextureMask.frag +14 -0
- CGoGN/include/Utils/Shaders/shaderTextureMask.h CGoGN/include/Utils/Shaders/shaderTextureMask.h +89 -0
- CGoGN/include/Utils/Shaders/shaderTextureMask.vert CGoGN/include/Utils/Shaders/shaderTextureMask.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderVectorPerVertex.frag CGoGN/include/Utils/Shaders/shaderVectorPerVertex.frag +9 -0
- CGoGN/include/Utils/Shaders/shaderVectorPerVertex.geom CGoGN/include/Utils/Shaders/shaderVectorPerVertex.geom +0 -0
- CGoGN/include/Utils/Shaders/shaderVectorPerVertex.h CGoGN/include/Utils/Shaders/shaderVectorPerVertex.h +79 -0
- CGoGN/include/Utils/Shaders/shaderVectorPerVertex.vert CGoGN/include/Utils/Shaders/shaderVectorPerVertex.vert +0 -0
- CGoGN/include/Utils/Shaders/shaderWallPaper.frag CGoGN/include/Utils/Shaders/shaderWallPaper.frag +10 -0
- CGoGN/include/Utils/Shaders/shaderWallPaper.h CGoGN/include/Utils/Shaders/shaderWallPaper.h +113 -0
- CGoGN/include/Utils/Shaders/shaderWallPaper.vert CGoGN/include/Utils/Shaders/shaderWallPaper.vert +0 -0
- CGoGN/include/Utils/cgognStream.h CGoGN/include/Utils/cgognStream.h +238 -0
- CGoGN/include/Utils/chrono.h CGoGN/include/Utils/chrono.h +0 -0
- CGoGN/include/Utils/clippingPresets.h CGoGN/include/Utils/clippingPresets.h +176 -0
- CGoGN/include/Utils/clippingPresetsAnimated.h CGoGN/include/Utils/clippingPresetsAnimated.h +260 -0
- CGoGN/include/Utils/clippingShader.h CGoGN/include/Utils/clippingShader.h +449 -0
- CGoGN/include/Utils/colorMaps.h CGoGN/include/Utils/colorMaps.h +0 -0
- CGoGN/include/Utils/colorMaps.hpp CGoGN/include/Utils/colorMaps.hpp +154 -0
- CGoGN/include/Utils/colourConverter.h CGoGN/include/Utils/colourConverter.h +0 -0
- CGoGN/include/Utils/colourConverter.hpp CGoGN/include/Utils/colourConverter.hpp +0 -0
- CGoGN/include/Utils/compress.h CGoGN/include/Utils/compress.h +0 -0
- CGoGN/include/Utils/convertType.h CGoGN/include/Utils/convertType.h +0 -0
- CGoGN/include/Utils/dll.h CGoGN/include/Utils/dll.h +36 -0
- CGoGN/include/Utils/drawer.h CGoGN/include/Utils/drawer.h +191 -0
- CGoGN/include/Utils/fbo.h CGoGN/include/Utils/fbo.h +235 -0
- CGoGN/include/Utils/filename.h CGoGN/include/Utils/filename.h +0 -0
- CGoGN/include/Utils/fixedArray.h CGoGN/include/Utils/fixedArray.h +0 -0
- CGoGN/include/Utils/frameManipulator.h CGoGN/include/Utils/frameManipulator.h +282 -0
- CGoGN/include/Utils/gl_def.h CGoGN/include/Utils/gl_def.h +0 -0
- CGoGN/include/Utils/gl_matrices.h CGoGN/include/Utils/gl_matrices.h +0 -0
- CGoGN/include/Utils/gzstream.h CGoGN/include/Utils/gzstream.h +138 -0
- CGoGN/include/Utils/img3D_IO.h CGoGN/include/Utils/img3D_IO.h +310 -0
- CGoGN/include/Utils/label.h CGoGN/include/Utils/label.h +0 -0
- CGoGN/include/Utils/mark.h CGoGN/include/Utils/mark.h +0 -0
- CGoGN/include/Utils/nameTypes.h CGoGN/include/Utils/nameTypes.h +0 -0
- CGoGN/include/Utils/os_spec.h CGoGN/include/Utils/os_spec.h +24 -0
- CGoGN/include/Utils/pickables.h CGoGN/include/Utils/pickables.h +540 -0
- CGoGN/include/Utils/pointSprite.frag CGoGN/include/Utils/pointSprite.frag +0 -0
- CGoGN/include/Utils/pointSprite.geom CGoGN/include/Utils/pointSprite.geom +0 -0
- CGoGN/include/Utils/pointSprite.h CGoGN/include/Utils/pointSprite.h +102 -0
- CGoGN/include/Utils/pointSprite.vert CGoGN/include/Utils/pointSprite.vert +0 -0
- CGoGN/include/Utils/qem.h CGoGN/include/Utils/qem.h +660 -0
- CGoGN/include/Utils/qem.hpp CGoGN/include/Utils/qem.hpp +0 -0
- CGoGN/include/Utils/quadricRGBfunctions.h CGoGN/include/Utils/quadricRGBfunctions.h +0 -0
- CGoGN/include/Utils/quadricRGBfunctions.hpp CGoGN/include/Utils/quadricRGBfunctions.hpp +0 -0
- CGoGN/include/Utils/quantization.h CGoGN/include/Utils/quantization.h +0 -0
- CGoGN/include/Utils/quantization.hpp CGoGN/include/Utils/quantization.hpp +0 -0
- CGoGN/include/Utils/scene_graph.h CGoGN/include/Utils/scene_graph.h +0 -0
- CGoGN/include/Utils/shaderMutator.h CGoGN/include/Utils/shaderMutator.h +220 -0
- CGoGN/include/Utils/shared_mem.h CGoGN/include/Utils/shared_mem.h +0 -0
- CGoGN/include/Utils/shared_mem.hpp CGoGN/include/Utils/shared_mem.hpp +0 -0
- CGoGN/include/Utils/snapshotHD.h CGoGN/include/Utils/snapshotHD.h +0 -0
- CGoGN/include/Utils/sphericalHarmonics.h CGoGN/include/Utils/sphericalHarmonics.h +106 -0
- CGoGN/include/Utils/sphericalHarmonics.hpp CGoGN/include/Utils/sphericalHarmonics.hpp +403 -0
- CGoGN/include/Utils/static_assert.h CGoGN/include/Utils/static_assert.h +0 -0
- CGoGN/include/Utils/svg.h CGoGN/include/Utils/svg.h +318 -0
- CGoGN/include/Utils/text3d.frag CGoGN/include/Utils/text3d.frag +10 -0
- CGoGN/include/Utils/text3d.h CGoGN/include/Utils/text3d.h +194 -0
- CGoGN/include/Utils/text3d.vert CGoGN/include/Utils/text3d.vert +0 -0
- CGoGN/include/Utils/textureSticker.h CGoGN/include/Utils/textureSticker.h +122 -0
- CGoGN/include/Utils/textures.h CGoGN/include/Utils/textures.h +406 -0
- CGoGN/include/Utils/textures.hpp CGoGN/include/Utils/textures.hpp +1157 -0
- CGoGN/include/Utils/threadbarrier.h CGoGN/include/Utils/threadbarrier.h +0 -0
- CGoGN/include/Utils/trackball.h CGoGN/include/Utils/trackball.h +0 -0
- CGoGN/include/Utils/vbo.h CGoGN/include/Utils/vbo.h +0 -0
- CGoGN/include/Utils/vbo.hpp CGoGN/include/Utils/vbo.hpp +48 -0
- CGoGN/include/Utils/vboRender.h CGoGN/include/Utils/vboRender.h +69 -0
- CGoGN/include/Utils/vbo_base.h CGoGN/include/Utils/vbo_base.h +251 -0
- CGoGN/include/Utils/xml.h CGoGN/include/Utils/xml.h +59 -0
- CGoGN/include/cgogn_assimp.h CGoGN/include/cgogn_assimp.h +1 -0
- CGoGN/include/cgogn_ext_libs.h CGoGN/include/cgogn_ext_libs.h +23 -0
- CGoGN/include/cgogn_qt.h CGoGN/include/cgogn_qt.h +1 -0
- CGoGN/include/cgogn_zinri.h CGoGN/include/cgogn_zinri.h +1 -0
- CGoGN/src/Algo/Histogram/histogram.cpp CGoGN/src/Algo/Histogram/histogram.cpp +225 -0
- CGoGN/src/Algo/Histogram/qthistodraw.cpp CGoGN/src/Algo/Histogram/qthistodraw.cpp +397 -0
- CGoGN/src/Algo/ImplicitHierarchicalMesh/ihm.cppxx CGoGN/src/Algo/ImplicitHierarchicalMesh/ihm.cppxx +0 -0
- CGoGN/src/Algo/ImplicitHierarchicalMesh/ihm3.cpp CGoGN/src/Algo/ImplicitHierarchicalMesh/ihm3.cpp +1112 -0
- CGoGN/src/Algo/Import/importPlyData.cpp CGoGN/src/Algo/Import/importPlyData.cpp +238 -0
- CGoGN/src/Algo/Import/ply.c CGoGN/src/Algo/Import/ply.c +3435 -0
- CGoGN/src/Algo/MC/tables.cpp CGoGN/src/Algo/MC/tables.cpp +1123 -0
- CGoGN/src/Algo/Render/mapRender.cpp CGoGN/src/Algo/Render/mapRender.cpp +129 -0
- CGoGN/src/Algo/Render/topoGenRender.cpp CGoGN/src/Algo/Render/topoGenRender.cpp +397 -0
- CGoGN/src/Algo/Render/vbo_MapRender.cpp.dep CGoGN/src/Algo/Render/vbo_MapRender.cpp.dep +0 -0
- CGoGN/src/Container/attributeContainer.cpp CGoGN/src/Container/attributeContainer.cpp +1683 -0
- CGoGN/src/Container/holeblock.cppXX CGoGN/src/Container/holeblock.cppXX +0 -0
- CGoGN/src/Container/holeblockref.cpp CGoGN/src/Container/holeblockref.cpp +0 -0
- CGoGN/src/Topology/generic/genericmap.cpp CGoGN/src/Topology/generic/genericmap.cpp +647 -0
- CGoGN/src/Topology/generic/mapMono.cpp CGoGN/src/Topology/generic/mapMono.cpp +229 -0
- CGoGN/src/Topology/generic/mapMulti.cpp CGoGN/src/Topology/generic/mapMulti.cpp +544 -0
- CGoGN/src/Topology/gmap/embeddedGMap2.cpp CGoGN/src/Topology/gmap/embeddedGMap2.cpp +599 -0
- CGoGN/src/Topology/gmap/embeddedGMap3.cpp CGoGN/src/Topology/gmap/embeddedGMap3.cpp +481 -0
- CGoGN/src/Topology/ihmap/ihm2.cpp CGoGN/src/Topology/ihmap/ihm2.cpp +328 -0
- CGoGN/src/Topology/ihmap/ihm3.cpp CGoGN/src/Topology/ihmap/ihm3.cpp +136 -0
- CGoGN/src/Topology/map/embeddedMap2.cpp CGoGN/src/Topology/map/embeddedMap2.cpp +713 -0
- CGoGN/src/Topology/map/embeddedMap2_MR.cpp CGoGN/src/Topology/map/embeddedMap2_MR.cpp +693 -0
- CGoGN/src/Topology/map/embeddedMap3.cpp CGoGN/src/Topology/map/embeddedMap3.cpp +751 -0
- CGoGN/src/Utils/GLSLShader.cpp CGoGN/src/Utils/GLSLShader.cpp +1239 -0
- CGoGN/src/Utils/Qt/qtQGLV.cpp CGoGN/src/Utils/Qt/qtQGLV.cpp +568 -0
- CGoGN/src/Utils/Qt/qtQGLV_glw.cpp CGoGN/src/Utils/Qt/qtQGLV_glw.cpp +283 -0
- CGoGN/src/Utils/Qt/qtSimple.cpp CGoGN/src/Utils/Qt/qtSimple.cpp +569 -0
- CGoGN/src/Utils/Qt/qtcolorschooser.cpp CGoGN/src/Utils/Qt/qtcolorschooser.cpp +84 -0
- CGoGN/src/Utils/Qt/qtgl.cpp CGoGN/src/Utils/Qt/qtgl.cpp +588 -0
- CGoGN/src/Utils/Qt/qtinputs.cpp CGoGN/src/Utils/Qt/qtinputs.cpp +336 -0
- CGoGN/src/Utils/Qt/qtpopup.cpp CGoGN/src/Utils/Qt/qtpopup.cpp +92 -0
- CGoGN/src/Utils/Shaders/shaderColorPerVertex.cpp CGoGN/src/Utils/Shaders/shaderColorPerVertex.cpp +121 -0
- CGoGN/src/Utils/Shaders/shaderCustom.cpp CGoGN/src/Utils/Shaders/shaderCustom.cpp +140 -0
- CGoGN/src/Utils/Shaders/shaderCustomTex.cpp CGoGN/src/Utils/Shaders/shaderCustomTex.cpp +167 -0
- CGoGN/src/Utils/Shaders/shaderEnvMap.cpp CGoGN/src/Utils/Shaders/shaderEnvMap.cpp +536 -0
- CGoGN/src/Utils/Shaders/shaderExplodeSmoothVolumes.cpp CGoGN/src/Utils/Shaders/shaderExplodeSmoothVolumes.cpp +203 -0
- CGoGN/src/Utils/Shaders/shaderExplodeVolumes.cpp CGoGN/src/Utils/Shaders/shaderExplodeVolumes.cpp +206 -0
- CGoGN/src/Utils/Shaders/shaderExplodeVolumesLines.cpp CGoGN/src/Utils/Shaders/shaderExplodeVolumesLines.cpp +147 -0
- CGoGN/src/Utils/Shaders/shaderFlat.cpp CGoGN/src/Utils/Shaders/shaderFlat.cpp +169 -0
- CGoGN/src/Utils/Shaders/shaderFlatColor.cpp CGoGN/src/Utils/Shaders/shaderFlatColor.cpp +151 -0
- CGoGN/src/Utils/Shaders/shaderIsoLines.cpp CGoGN/src/Utils/Shaders/shaderIsoLines.cpp +144 -0
- CGoGN/src/Utils/Shaders/shaderMatCustom.cpp CGoGN/src/Utils/Shaders/shaderMatCustom.cpp +230 -0
- CGoGN/src/Utils/Shaders/shaderPhong.cpp CGoGN/src/Utils/Shaders/shaderPhong.cpp +242 -0
- CGoGN/src/Utils/Shaders/shaderPhongTexture.cpp CGoGN/src/Utils/Shaders/shaderPhongTexture.cpp +218 -0
- CGoGN/src/Utils/Shaders/shaderRadiancePerVertex.cpp CGoGN/src/Utils/Shaders/shaderRadiancePerVertex.cpp +189 -0
- CGoGN/src/Utils/Shaders/shaderScalarField.cpp CGoGN/src/Utils/Shaders/shaderScalarField.cpp +137 -0
- CGoGN/src/Utils/Shaders/shaderSimpleColor.cpp CGoGN/src/Utils/Shaders/shaderSimpleColor.cpp +109 -0
- CGoGN/src/Utils/Shaders/shaderSimpleFlat.cpp CGoGN/src/Utils/Shaders/shaderSimpleFlat.cpp +191 -0
- CGoGN/src/Utils/Shaders/shaderSimpleTexture.cpp CGoGN/src/Utils/Shaders/shaderSimpleTexture.cpp +125 -0
- CGoGN/src/Utils/Shaders/shaderTextureDepth.cpp CGoGN/src/Utils/Shaders/shaderTextureDepth.cpp +114 -0
- CGoGN/src/Utils/Shaders/shaderTextureMask.cpp CGoGN/src/Utils/Shaders/shaderTextureMask.cpp +116 -0
- CGoGN/src/Utils/Shaders/shaderVectorPerVertex.cpp CGoGN/src/Utils/Shaders/shaderVectorPerVertex.cpp +125 -0
- CGoGN/src/Utils/Shaders/shaderWallPaper.cpp CGoGN/src/Utils/Shaders/shaderWallPaper.cpp +206 -0
- CGoGN/src/Utils/cgognStream.cpp CGoGN/src/Utils/cgognStream.cpp +420 -0
- CGoGN/src/Utils/clippingPresets.cpp CGoGN/src/Utils/clippingPresets.cpp +258 -0
- CGoGN/src/Utils/clippingPresetsAnimated.cpp CGoGN/src/Utils/clippingPresetsAnimated.cpp +363 -0
- CGoGN/src/Utils/clippingShader.cpp CGoGN/src/Utils/clippingShader.cpp +1269 -0
- CGoGN/src/Utils/compress.cpp CGoGN/src/Utils/compress.cpp +110 -0
- CGoGN/src/Utils/drawer.cpp CGoGN/src/Utils/drawer.cpp +339 -0
- CGoGN/src/Utils/fbo.cpp CGoGN/src/Utils/fbo.cpp +492 -0
- CGoGN/src/Utils/frameManipulator.cpp CGoGN/src/Utils/frameManipulator.cpp +888 -0
- CGoGN/src/Utils/gzstream.cpp CGoGN/src/Utils/gzstream.cpp +166 -0
- CGoGN/src/Utils/img3D_IO.cpp CGoGN/src/Utils/img3D_IO.cpp +358 -0
- CGoGN/src/Utils/pickables.cpp CGoGN/src/Utils/pickables.cpp +1161 -0
- CGoGN/src/Utils/pointSprite.cpp CGoGN/src/Utils/pointSprite.cpp +180 -0
- CGoGN/src/Utils/scene_graph.cpp CGoGN/src/Utils/scene_graph.cpp +0 -0
- CGoGN/src/Utils/shaderMutator.cpp CGoGN/src/Utils/shaderMutator.cpp +785 -0
- CGoGN/src/Utils/svg.cpp CGoGN/src/Utils/svg.cpp +802 -0
- CGoGN/src/Utils/text3d.cpp CGoGN/src/Utils/text3d.cpp +362 -0
- CGoGN/src/Utils/textureSticker.cpp CGoGN/src/Utils/textureSticker.cpp +260 -0
- CGoGN/src/Utils/trackball.cpp CGoGN/src/Utils/trackball.cpp +434 -0
- CGoGN/src/Utils/vbo.cpp CGoGN/src/Utils/vbo.cpp +207 -0
- CGoGN/src/Utils/vboRender.cpp CGoGN/src/Utils/vboRender.cpp +81 -0
- CMakeLists.txt CMakeLists.txt +235 -284
- README.md README.md +20 -83
- SCHNApps/CMakeLists.txt SCHNApps/CMakeLists.txt +83 -146
- SCHNApps/Plugins/CMakeLists.txt SCHNApps/Plugins/CMakeLists.txt +16 -1
- SCHNApps/Plugins/plugins_cmake.txt SCHNApps/Plugins/plugins_cmake.txt +4 -9
- SCHNApps/Plugins/schnapps/CMakeLists.txt SCHNApps/Plugins/schnapps/CMakeLists.txt +97 -0
- SCHNApps/Plugins/surface_deformation/include/surface_deformation.h ...Plugins/surface_deformation/include/surface_deformation.h +7 -4
- SCHNApps/Plugins/surface_deformation/src/surface_deformation.cpp ...s/Plugins/surface_deformation/src/surface_deformation.cpp +24 -19
- SCHNApps/Plugins/surface_differentialProperties/include/surface_differentialProperties.h ...entialProperties/include/surface_differentialProperties.h +4 -2
- SCHNApps/Plugins/surface_differentialProperties/src/surface_differentialProperties.cpp ...erentialProperties/src/surface_differentialProperties.cpp +8 -5
- SCHNApps/Plugins/surface_distance/include/surface_distance.h SCHNApps/Plugins/surface_distance/include/surface_distance.h +4 -1
- SCHNApps/Plugins/surface_distance/src/dialog_computeDistance.cpp ...s/Plugins/surface_distance/src/dialog_computeDistance.cpp +4 -4
- SCHNApps/Plugins/surface_distance/src/surface_distance.cpp SCHNApps/Plugins/surface_distance/src/surface_distance.cpp +9 -4
- SCHNApps/Plugins/surface_import/include/surface_import.h SCHNApps/Plugins/surface_import/include/surface_import.h +3 -0
- SCHNApps/Plugins/surface_import/src/surface_import.cpp SCHNApps/Plugins/surface_import/src/surface_import.cpp +15 -10
- SCHNApps/Plugins/surface_modelisation/include/surface_modelisation.h ...ugins/surface_modelisation/include/surface_modelisation.h +8 -6
- SCHNApps/Plugins/surface_modelisation/src/surface_modelisation.cpp ...Plugins/surface_modelisation/src/surface_modelisation.cpp +11 -14
- SCHNApps/Plugins/surface_radiance/CMakeLists.txt SCHNApps/Plugins/surface_radiance/CMakeLists.txt +32 -0
- SCHNApps/Plugins/surface_radiance/forms/surface_radiance.ui SCHNApps/Plugins/surface_radiance/forms/surface_radiance.ui +112 -0
- SCHNApps/Plugins/surface_radiance/include/SphericalFunctionIntegratorCartesian.h ...e_radiance/include/SphericalFunctionIntegratorCartesian.h +57 -0
- SCHNApps/Plugins/surface_radiance/include/edgeSelectorRadiance.h ...s/Plugins/surface_radiance/include/edgeSelectorRadiance.h +144 -0
- SCHNApps/Plugins/surface_radiance/include/edgeSelectorRadiance.hpp ...Plugins/surface_radiance/include/edgeSelectorRadiance.hpp +306 -0
- SCHNApps/Plugins/surface_radiance/include/halfEdgeSelectorRadiance.h ...ugins/surface_radiance/include/halfEdgeSelectorRadiance.h +144 -0
- SCHNApps/Plugins/surface_radiance/include/halfEdgeSelectorRadiance.hpp ...ins/surface_radiance/include/halfEdgeSelectorRadiance.hpp +335 -0
- SCHNApps/Plugins/surface_radiance/include/meshTableSurfaceRadiance.h ...ugins/surface_radiance/include/meshTableSurfaceRadiance.h +57 -0
- SCHNApps/Plugins/surface_radiance/include/meshTableSurfaceRadiance.hpp ...ins/surface_radiance/include/meshTableSurfaceRadiance.hpp +250 -0
- SCHNApps/Plugins/surface_radiance/include/sphere_lebedev_rule.h ...ps/Plugins/surface_radiance/include/sphere_lebedev_rule.h +40 -0
- SCHNApps/Plugins/surface_radiance/include/surface_radiance.h SCHNApps/Plugins/surface_radiance/include/surface_radiance.h +138 -0
- SCHNApps/Plugins/surface_radiance/include/surface_radiance_dockTab.h ...ugins/surface_radiance/include/surface_radiance_dockTab.h +51 -0
- SCHNApps/Plugins/surface_radiance/src/SphericalFunctionIntegratorCartesian.cpp ...ace_radiance/src/SphericalFunctionIntegratorCartesian.cpp +68 -0
- SCHNApps/Plugins/surface_radiance/src/sphere_lebedev_rule.cpp ...Apps/Plugins/surface_radiance/src/sphere_lebedev_rule.cpp +6922 -0
- SCHNApps/Plugins/surface_radiance/src/surface_radiance.cpp SCHNApps/Plugins/surface_radiance/src/surface_radiance.cpp +578 -0
- SCHNApps/Plugins/surface_radiance/src/surface_radiance_dockTab.cpp ...Plugins/surface_radiance/src/surface_radiance_dockTab.cpp +161 -0
- SCHNApps/Plugins/surface_render/forms/surface_render.ui SCHNApps/Plugins/surface_render/forms/surface_render.ui +37 -1
- SCHNApps/Plugins/surface_render/include/surface_render.h SCHNApps/Plugins/surface_render/include/surface_render.h +13 -16
- SCHNApps/Plugins/surface_render/src/surface_render.cpp SCHNApps/Plugins/surface_render/src/surface_render.cpp +9 -11
- SCHNApps/Plugins/surface_render/src/surface_render_dockTab.cpp ...pps/Plugins/surface_render/src/surface_render_dockTab.cpp +33 -35
- SCHNApps/Plugins/surface_renderScalar/include/surface_renderScalar.h ...ugins/surface_renderScalar/include/surface_renderScalar.h +9 -7
- SCHNApps/Plugins/surface_renderScalar/src/surface_renderScalar.cpp ...Plugins/surface_renderScalar/src/surface_renderScalar.cpp +5 -1
- SCHNApps/Plugins/surface_renderTopo/forms/surface_renderTopo.ui ...ps/Plugins/surface_renderTopo/forms/surface_renderTopo.ui +80 -80
- SCHNApps/Plugins/surface_renderTopo/include/surface_renderTopo.h ...s/Plugins/surface_renderTopo/include/surface_renderTopo.h +9 -7
- SCHNApps/Plugins/surface_renderTopo/src/surface_renderTopo.cpp ...pps/Plugins/surface_renderTopo/src/surface_renderTopo.cpp +7 -1
- SCHNApps/Plugins/surface_renderVector/include/surface_renderVector.h ...ugins/surface_renderVector/include/surface_renderVector.h +9 -7
- SCHNApps/Plugins/surface_renderVector/src/surface_renderVector.cpp ...Plugins/surface_renderVector/src/surface_renderVector.cpp +6 -1
- SCHNApps/Plugins/surface_selection/include/surface_selection.h ...pps/Plugins/surface_selection/include/surface_selection.h +13 -5
- SCHNApps/Plugins/surface_selection/src/surface_selection.cpp SCHNApps/Plugins/surface_selection/src/surface_selection.cpp +64 -47
- SCHNApps/Plugins/surface_subdivision/include/surface_subdivision.h ...Plugins/surface_subdivision/include/surface_subdivision.h +4 -2
- SCHNApps/Plugins/surface_subdivision/src/surface_subdivision.cpp ...s/Plugins/surface_subdivision/src/surface_subdivision.cpp +10 -2
- SCHNApps/Plugins/volume_import/include/volume_import.h SCHNApps/Plugins/volume_import/include/volume_import.h +3 -1
- SCHNApps/Plugins/volume_import/src/volume_import.cpp SCHNApps/Plugins/volume_import/src/volume_import.cpp +17 -11
- SCHNApps/Plugins/volume_render/include/volume_render.h SCHNApps/Plugins/volume_render/include/volume_render.h +3 -1
- SCHNApps/Plugins/volume_render/src/volume_render.cpp SCHNApps/Plugins/volume_render/src/volume_render.cpp +8 -4
- SCHNApps/forms/controlDock_CameraTabWidget.ui SCHNApps/forms/controlDock_CameraTabWidget.ui +4 -4
- SCHNApps/forms/controlDock_MapTabWidget.ui SCHNApps/forms/controlDock_MapTabWidget.ui +82 -61
- SCHNApps/forms/controlDock_PluginTabWidget.ui SCHNApps/forms/controlDock_PluginTabWidget.ui +66 -2
- SCHNApps/include/camera.h SCHNApps/include/camera.h +17 -25
- SCHNApps/include/cellSelector.h SCHNApps/include/cellSelector.h +5 -2
- SCHNApps/include/colorComboBox.h SCHNApps/include/colorComboBox.h +3 -1
- SCHNApps/include/controlDock_cameraTab.h SCHNApps/include/controlDock_cameraTab.h +10 -14
- SCHNApps/include/controlDock_mapTab.h SCHNApps/include/controlDock_mapTab.h +6 -7
- SCHNApps/include/controlDock_pluginTab.h SCHNApps/include/controlDock_pluginTab.h +3 -1
- SCHNApps/include/dialogList.h SCHNApps/include/dialogList.h +2 -1
- SCHNApps/include/dll.h SCHNApps/include/dll.h +9 -0
- SCHNApps/include/mapHandler.h SCHNApps/include/mapHandler.h +71 -40
- SCHNApps/include/mapHandler.hpp SCHNApps/include/mapHandler.hpp +102 -105
- SCHNApps/include/plugin.h SCHNApps/include/plugin.h +5 -1
- SCHNApps/include/plugin_interaction.h SCHNApps/include/plugin_interaction.h +6 -4
- SCHNApps/include/plugin_processing.h SCHNApps/include/plugin_processing.h +4 -3
- SCHNApps/include/schnapps.h SCHNApps/include/schnapps.h +8 -5
- SCHNApps/include/slot_debug.h SCHNApps/include/slot_debug.h +4 -1
- SCHNApps/include/types.h SCHNApps/include/types.h +32 -7
- SCHNApps/include/view.h SCHNApps/include/view.h +34 -19
- SCHNApps/include/viewButtonArea.h SCHNApps/include/viewButtonArea.h +1 -1
- SCHNApps/resources/icons/arrow_down.png SCHNApps/resources/icons/arrow_down.png +0 -0
- SCHNApps/resources/icons/arrow_up.png SCHNApps/resources/icons/arrow_up.png +0 -0
- SCHNApps/src/camera.cpp SCHNApps/src/camera.cpp +42 -130
- SCHNApps/src/controlDock_cameraTab.cpp SCHNApps/src/controlDock_cameraTab.cpp +78 -46
- SCHNApps/src/controlDock_mapTab.cpp SCHNApps/src/controlDock_mapTab.cpp +157 -240
- SCHNApps/src/controlDock_pluginTab.cpp SCHNApps/src/controlDock_pluginTab.cpp +2 -12
- SCHNApps/src/main.cpp SCHNApps/src/main.cpp +5 -8
- SCHNApps/src/mapHandler.cpp SCHNApps/src/mapHandler.cpp +8 -4
- SCHNApps/src/schnapps.cpp SCHNApps/src/schnapps.cpp +50 -71
- SCHNApps/src/slot_debug.cpp SCHNApps/src/slot_debug.cpp +2 -4
- SCHNApps/src/view.cpp SCHNApps/src/view.cpp +175 -184
- ThirdParty/CMakeLists.txt ThirdParty/CMakeLists.txt +0 -63
- ThirdParty/OpenNL/CMakeLists.txt ThirdParty/OpenNL/CMakeLists.txt +4 -4
- ThirdParty/OpenNL/CMakeOptions.txt ThirdParty/OpenNL/CMakeOptions.txt +2 -2
- ThirdParty/OpenNL/src/CMakeLists.txt ThirdParty/OpenNL/src/CMakeLists.txt +14 -8
- ThirdParty/PythonQt/CMakeLists.txt ThirdParty/PythonQt/CMakeLists.txt +94 -101
- ThirdParty/PythonQt/COPYING ThirdParty/PythonQt/COPYING +0 -0
- ThirdParty/PythonQt/PythonQt.pro ThirdParty/PythonQt/PythonQt.pro +4 -0
- ThirdParty/PythonQt/README ThirdParty/PythonQt/README +0 -0
- ThirdParty/PythonQt/build/PythonQt.prf ThirdParty/PythonQt/build/PythonQt.prf +15 -0
- ThirdParty/PythonQt/build/PythonQt_QtAll.prf ThirdParty/PythonQt/build/PythonQt_QtAll.prf +13 -0
- ThirdParty/PythonQt/build/common.prf ThirdParty/PythonQt/build/common.prf +43 -0
- ThirdParty/PythonQt/build/python.prf ThirdParty/PythonQt/build/python.prf +41 -0
- ThirdParty/PythonQt/createSolution.bat ThirdParty/PythonQt/createSolution.bat +1 -0
- ThirdParty/PythonQt/doxygen/PythonQt.jpg ThirdParty/PythonQt/doxygen/PythonQt.jpg +0 -0
- ThirdParty/PythonQt/doxygen/createDoc.bat ThirdParty/PythonQt/doxygen/createDoc.bat +1 -0
- ThirdParty/PythonQt/doxygen/doc.cfg ThirdParty/PythonQt/doxygen/doc.cfg +1904 -0
- ThirdParty/PythonQt/doxygen/footer.html ThirdParty/PythonQt/doxygen/footer.html +21 -0
- ThirdParty/PythonQt/doxygen/header.html ThirdParty/PythonQt/doxygen/header.html +56 -0
- ThirdParty/PythonQt/doxygen/stylesheet.css ThirdParty/PythonQt/doxygen/stylesheet.css +1186 -0
- ThirdParty/PythonQt/examples/CPPPyWrapperExample/CPPPyWrapperExample.cpp ...onQt/examples/CPPPyWrapperExample/CPPPyWrapperExample.cpp +46 -0
- ThirdParty/PythonQt/examples/CPPPyWrapperExample/CPPPyWrapperExample.pro ...onQt/examples/CPPPyWrapperExample/CPPPyWrapperExample.pro +19 -0
- ThirdParty/PythonQt/examples/CPPPyWrapperExample/CPPPyWrapperExample.qrc ...onQt/examples/CPPPyWrapperExample/CPPPyWrapperExample.qrc +5 -0
- ThirdParty/PythonQt/examples/CPPPyWrapperExample/README.txt ThirdParty/PythonQt/examples/CPPPyWrapperExample/README.txt +7 -0
- ThirdParty/PythonQt/examples/CPPPyWrapperExample/eyed3tagger.py ...arty/PythonQt/examples/CPPPyWrapperExample/eyed3tagger.py +10 -0
- ThirdParty/PythonQt/examples/PyCPPWrapperExample/CustomObjects.cpp ...y/PythonQt/examples/PyCPPWrapperExample/CustomObjects.cpp +43 -0
- ThirdParty/PythonQt/examples/PyCPPWrapperExample/CustomObjects.h ...rty/PythonQt/examples/PyCPPWrapperExample/CustomObjects.h +85 -0
- ThirdParty/PythonQt/examples/PyCPPWrapperExample/PyCPPWrapperExample.bat ...onQt/examples/PyCPPWrapperExample/PyCPPWrapperExample.bat +2 -0
- ThirdParty/PythonQt/examples/PyCPPWrapperExample/PyCPPWrapperExample.pro ...onQt/examples/PyCPPWrapperExample/PyCPPWrapperExample.pro +26 -0
- ThirdParty/PythonQt/examples/PyCPPWrapperExample/PyCPPWrapperExample.qrc ...onQt/examples/PyCPPWrapperExample/PyCPPWrapperExample.qrc +5 -0
- ThirdParty/PythonQt/examples/PyCPPWrapperExample/example.py ThirdParty/PythonQt/examples/PyCPPWrapperExample/example.py +19 -0
- ThirdParty/PythonQt/examples/PyCPPWrapperExample/main.cpp ThirdParty/PythonQt/examples/PyCPPWrapperExample/main.cpp +67 -0
- ThirdParty/PythonQt/examples/PyCustomMetaTypeExample/CustomObject.cpp ...ythonQt/examples/PyCustomMetaTypeExample/CustomObject.cpp +43 -0
- ThirdParty/PythonQt/examples/PyCustomMetaTypeExample/CustomObject.h .../PythonQt/examples/PyCustomMetaTypeExample/CustomObject.h +85 -0
- ThirdParty/PythonQt/examples/PyCustomMetaTypeExample/PyCustomMetaTypeExample.bat ...mples/PyCustomMetaTypeExample/PyCustomMetaTypeExample.bat +2 -0
- ThirdParty/PythonQt/examples/PyCustomMetaTypeExample/PyCustomMetaTypeExample.pro ...mples/PyCustomMetaTypeExample/PyCustomMetaTypeExample.pro +26 -0
- ThirdParty/PythonQt/examples/PyCustomMetaTypeExample/PyCustomMetaTypeExample.qrc ...mples/PyCustomMetaTypeExample/PyCustomMetaTypeExample.qrc +5 -0
- ThirdParty/PythonQt/examples/PyCustomMetaTypeExample/example.py ...arty/PythonQt/examples/PyCustomMetaTypeExample/example.py +14 -0
- ThirdParty/PythonQt/examples/PyCustomMetaTypeExample/main.cpp ...dParty/PythonQt/examples/PyCustomMetaTypeExample/main.cpp +69 -0
- ThirdParty/PythonQt/examples/PyDecoratorsExample/PyDecoratorsExample.bat ...onQt/examples/PyDecoratorsExample/PyDecoratorsExample.bat +2 -0
- ThirdParty/PythonQt/examples/PyDecoratorsExample/PyDecoratorsExample.pro ...onQt/examples/PyDecoratorsExample/PyDecoratorsExample.pro +26 -0
- ThirdParty/PythonQt/examples/PyDecoratorsExample/PyDecoratorsExample.qrc ...onQt/examples/PyDecoratorsExample/PyDecoratorsExample.qrc +5 -0
- ThirdParty/PythonQt/examples/PyDecoratorsExample/PyExampleDecorators.cpp ...onQt/examples/PyDecoratorsExample/PyExampleDecorators.cpp +43 -0
- ThirdParty/PythonQt/examples/PyDecoratorsExample/PyExampleDecorators.h ...thonQt/examples/PyDecoratorsExample/PyExampleDecorators.h +95 -0
- ThirdParty/PythonQt/examples/PyDecoratorsExample/example.py ThirdParty/PythonQt/examples/PyDecoratorsExample/example.py +28 -0
- ThirdParty/PythonQt/examples/PyDecoratorsExample/main.cpp ThirdParty/PythonQt/examples/PyDecoratorsExample/main.cpp +68 -0
- ThirdParty/PythonQt/examples/PyGettingStarted/GettingStarted.py ...arty/PythonQt/examples/PyGettingStarted/GettingStarted.py +27 -0
- ThirdParty/PythonQt/examples/PyGettingStarted/PyGettingStarted.bat ...y/PythonQt/examples/PyGettingStarted/PyGettingStarted.bat +2 -0
- ThirdParty/PythonQt/examples/PyGettingStarted/PyGettingStarted.pro ...y/PythonQt/examples/PyGettingStarted/PyGettingStarted.pro +24 -0
- ThirdParty/PythonQt/examples/PyGettingStarted/PyGettingStarted.qrc ...y/PythonQt/examples/PyGettingStarted/PyGettingStarted.qrc +5 -0
- ThirdParty/PythonQt/examples/PyGettingStarted/main.cpp ThirdParty/PythonQt/examples/PyGettingStarted/main.cpp +92 -0
- ThirdParty/PythonQt/examples/PyGuiExample/PyGuiExample.bat ThirdParty/PythonQt/examples/PyGuiExample/PyGuiExample.bat +2 -0
- ThirdParty/PythonQt/examples/PyGuiExample/PyGuiExample.pro ThirdParty/PythonQt/examples/PyGuiExample/PyGuiExample.pro +25 -0
- ThirdParty/PythonQt/examples/PyGuiExample/PyGuiExample.qrc ThirdParty/PythonQt/examples/PyGuiExample/PyGuiExample.qrc +5 -0
- ThirdParty/PythonQt/examples/PyGuiExample/example.py ThirdParty/PythonQt/examples/PyGuiExample/example.py +15 -0
- ThirdParty/PythonQt/examples/PyGuiExample/main.cpp ThirdParty/PythonQt/examples/PyGuiExample/main.cpp +68 -0
- ThirdParty/PythonQt/examples/PyLauncher/PyLauncher.pro ThirdParty/PythonQt/examples/PyLauncher/PyLauncher.pro +23 -0
- ThirdParty/PythonQt/examples/PyLauncher/main.cpp ThirdParty/PythonQt/examples/PyLauncher/main.cpp +90 -0
- ThirdParty/PythonQt/examples/PyScriptingConsole/PyExampleObject.cpp .../PythonQt/examples/PyScriptingConsole/PyExampleObject.cpp +87 -0
- ThirdParty/PythonQt/examples/PyScriptingConsole/PyExampleObject.h ...ty/PythonQt/examples/PyScriptingConsole/PyExampleObject.h +79 -0
- ThirdParty/PythonQt/examples/PyScriptingConsole/PyScriptingConsole.bat ...thonQt/examples/PyScriptingConsole/PyScriptingConsole.bat +2 -0
- ThirdParty/PythonQt/examples/PyScriptingConsole/PyScriptingConsole.pro ...thonQt/examples/PyScriptingConsole/PyScriptingConsole.pro +29 -0
- ThirdParty/PythonQt/examples/PyScriptingConsole/PyScriptingConsole.qrc ...thonQt/examples/PyScriptingConsole/PyScriptingConsole.qrc +5 -0
- ThirdParty/PythonQt/examples/PyScriptingConsole/example.py ThirdParty/PythonQt/examples/PyScriptingConsole/example.py +15 -0
- ThirdParty/PythonQt/examples/PyScriptingConsole/main.cpp ThirdParty/PythonQt/examples/PyScriptingConsole/main.cpp +74 -0
- ThirdParty/PythonQt/examples/examples.pro ThirdParty/PythonQt/examples/examples.pro +9 -0
- ThirdParty/PythonQt/extensions/PythonQt_QtAll/PythonQt_QtAll.cpp ...rty/PythonQt/extensions/PythonQt_QtAll/PythonQt_QtAll.cpp +9 -5
- ThirdParty/PythonQt/extensions/PythonQt_QtAll/PythonQt_QtAll.h ...Party/PythonQt/extensions/PythonQt_QtAll/PythonQt_QtAll.h +0 -0
- ThirdParty/PythonQt/extensions/PythonQt_QtAll/PythonQt_QtAll.pro ...rty/PythonQt/extensions/PythonQt_QtAll/PythonQt_QtAll.pro +22 -15
- ThirdParty/PythonQt/extensions/extensions.pro ThirdParty/PythonQt/extensions/extensions.pro +0 -0
- ThirdParty/PythonQt/generated_cpp/com_trolltech_qt_core/com_trolltech_qt_core2.cpp ...ated_cpp/com_trolltech_qt_core/com_trolltech_qt_core2.cpp +0 -714
- ThirdParty/PythonQt/generated_cpp/com_trolltech_qt_core/com_trolltech_qt_core2.h ...erated_cpp/com_trolltech_qt_core/com_trolltech_qt_core2.h +0 -257
- ThirdParty/PythonQt/generated_cpp/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin0.h ...rolltech_qt_core_builtin/com_trolltech_qt_core_builtin0.h +0 -1193
- ThirdParty/PythonQt/generated_cpp/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp ...erated_cpp/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp +0 -15475
- ThirdParty/PythonQt/generated_cpp/com_trolltech_qt_gui/com_trolltech_qt_gui1.h ...enerated_cpp/com_trolltech_qt_gui/com_trolltech_qt_gui1.h +0 -2007
- ThirdParty/PythonQt/generated_cpp/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp ...rated_cpp/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp +0 -14700
- ThirdParty/PythonQt/generated_cpp/com_trolltech_qt_gui/com_trolltech_qt_gui10.h ...nerated_cpp/com_trolltech_qt_gui/com_trolltech_qt_gui10.h +0 -2140
- ThirdParty/PythonQt/generated_cpp/com_trolltech_qt_xml/com_trolltech_qt_xml1.cpp ...erated_cpp/com_trolltech_qt_xml/com_trolltech_qt_xml1.cpp +0 -836
- ThirdParty/PythonQt/generated_cpp/com_trolltech_qt_xml/com_trolltech_qt_xml1.h ...enerated_cpp/com_trolltech_qt_xml/com_trolltech_qt_xml1.h +0 -272
- ThirdParty/PythonQt/generated_cpp_47/PythonQt_QtBindings.cpp ThirdParty/PythonQt/generated_cpp_47/PythonQt_QtBindings.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/PythonQt_QtBindings.h ThirdParty/PythonQt/generated_cpp_47/PythonQt_QtBindings.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core.pri ...ed_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core.pri +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core0.cpp ...d_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core0.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core0.h ...ted_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core0.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core1.cpp ...d_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core1.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core1.h ...ted_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core1.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core2.cpp ...d_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core2.cpp +714 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core2.h ...ted_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core2.h +257 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_core/com_trolltech_qt_core_init.cpp ...p_47/com_trolltech_qt_core/com_trolltech_qt_core_init.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin.pri ...olltech_qt_core_builtin/com_trolltech_qt_core_builtin.pri +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin0.cpp ...lltech_qt_core_builtin/com_trolltech_qt_core_builtin0.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin0.h ...rolltech_qt_core_builtin/com_trolltech_qt_core_builtin0.h +1193 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin_init.cpp ...ch_qt_core_builtin/com_trolltech_qt_core_builtin_init.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui.pri ...ated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui.pri +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp ...ted_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui0.h ...rated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui0.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp ...ted_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp +15470 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui1.h ...rated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui1.h +2000 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp ...ed_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp +14700 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui10.h ...ated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui10.h +2140 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp ...ted_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui2.h ...rated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui2.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp ...ted_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui3.h ...rated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui3.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp ...ted_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui4.h ...rated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui4.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp ...ted_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui5.h ...rated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui5.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp ...ted_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui6.h ...rated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui6.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp ...ted_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui7.h ...rated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui7.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp ...ted_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui8.h ...rated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui8.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp ...ted_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui9.h ...rated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui9.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui_init.cpp ...cpp_47/com_trolltech_qt_gui/com_trolltech_qt_gui_init.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin.pri ...trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin.pri +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp ...rolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.h ..._trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin_init.cpp ...tech_qt_gui_builtin/com_trolltech_qt_gui_builtin_init.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_network/com_trolltech_qt_network.pri ..._47/com_trolltech_qt_network/com_trolltech_qt_network.pri +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_network/com_trolltech_qt_network0.cpp ...47/com_trolltech_qt_network/com_trolltech_qt_network0.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_network/com_trolltech_qt_network0.h ...p_47/com_trolltech_qt_network/com_trolltech_qt_network0.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_network/com_trolltech_qt_network_init.cpp ...om_trolltech_qt_network/com_trolltech_qt_network_init.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_opengl/com_trolltech_qt_opengl.pri ...pp_47/com_trolltech_qt_opengl/com_trolltech_qt_opengl.pri +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp ...p_47/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.h ...cpp_47/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_opengl/com_trolltech_qt_opengl_init.cpp .../com_trolltech_qt_opengl/com_trolltech_qt_opengl_init.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_sql/com_trolltech_qt_sql.pri ...ated_cpp_47/com_trolltech_qt_sql/com_trolltech_qt_sql.pri +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp ...ted_cpp_47/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_sql/com_trolltech_qt_sql0.h ...rated_cpp_47/com_trolltech_qt_sql/com_trolltech_qt_sql0.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_sql/com_trolltech_qt_sql_init.cpp ...cpp_47/com_trolltech_qt_sql/com_trolltech_qt_sql_init.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_svg/com_trolltech_qt_svg.pri ...ated_cpp_47/com_trolltech_qt_svg/com_trolltech_qt_svg.pri +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp ...ted_cpp_47/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_svg/com_trolltech_qt_svg0.h ...rated_cpp_47/com_trolltech_qt_svg/com_trolltech_qt_svg0.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_svg/com_trolltech_qt_svg_init.cpp ...cpp_47/com_trolltech_qt_svg/com_trolltech_qt_svg_init.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_uitools/com_trolltech_qt_uitools.pri ..._47/com_trolltech_qt_uitools/com_trolltech_qt_uitools.pri +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp ...47/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.h ...p_47/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_uitools/com_trolltech_qt_uitools_init.cpp ...om_trolltech_qt_uitools/com_trolltech_qt_uitools_init.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_webkit/com_trolltech_qt_webkit.pri ...pp_47/com_trolltech_qt_webkit/com_trolltech_qt_webkit.pri +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp ...p_47/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.h ...cpp_47/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_webkit/com_trolltech_qt_webkit_init.cpp .../com_trolltech_qt_webkit/com_trolltech_qt_webkit_init.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_xml/com_trolltech_qt_xml.pri ...ated_cpp_47/com_trolltech_qt_xml/com_trolltech_qt_xml.pri +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp ...ted_cpp_47/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_xml/com_trolltech_qt_xml0.h ...rated_cpp_47/com_trolltech_qt_xml/com_trolltech_qt_xml0.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_xml/com_trolltech_qt_xml1.cpp ...ted_cpp_47/com_trolltech_qt_xml/com_trolltech_qt_xml1.cpp +836 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_xml/com_trolltech_qt_xml1.h ...rated_cpp_47/com_trolltech_qt_xml/com_trolltech_qt_xml1.h +272 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_xml/com_trolltech_qt_xml_init.cpp ...cpp_47/com_trolltech_qt_xml/com_trolltech_qt_xml_init.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns.pri ...trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns.pri +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp ...rolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.h ..._trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.h +0 -0
- ThirdParty/PythonQt/generated_cpp_47/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns_init.cpp ...tech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns_init.cpp +0 -0
- ThirdParty/PythonQt/generated_cpp_48/PythonQt_QtBindings.cpp ThirdParty/PythonQt/generated_cpp_48/PythonQt_QtBindings.cpp +63 -0
- ThirdParty/PythonQt/generated_cpp_48/PythonQt_QtBindings.h ThirdParty/PythonQt/generated_cpp_48/PythonQt_QtBindings.h +10 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core.pri ...ed_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core.pri +10 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core0.cpp ...d_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core0.cpp +8971 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core0.h ...ted_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core0.h +1714 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core1.cpp ...d_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core1.cpp +5066 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core1.h ...ted_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core1.h +1272 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core2.cpp ...d_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core2.cpp +2893 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core2.h ...ted_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core2.h +790 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core_init.cpp ...p_48/com_trolltech_qt_core/com_trolltech_qt_core_init.cpp +124 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin.pri ...olltech_qt_core_builtin/com_trolltech_qt_core_builtin.pri +6 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin0.cpp ...lltech_qt_core_builtin/com_trolltech_qt_core_builtin0.cpp +3893 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin0.h ...rolltech_qt_core_builtin/com_trolltech_qt_core_builtin0.h +1246 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin_init.cpp ...ch_qt_core_builtin/com_trolltech_qt_core_builtin_init.cpp +28 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui.pri ...ated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui.pri +28 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp ...ted_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp +20557 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui0.h ...rated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui0.h +2538 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp ...ted_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp +16863 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui1.h ...rated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui1.h +2127 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp ...ed_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp +13617 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui10.h ...ated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui10.h +1970 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp ...ed_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp +7570 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui11.h ...ated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui11.h +1177 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp ...ted_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp +13153 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui2.h ...rated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui2.h +2081 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp ...ted_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp +11632 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui3.h ...rated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui3.h +2018 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp ...ted_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp +13947 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui4.h ...rated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui4.h +2106 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp ...ted_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp +13036 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui5.h ...rated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui5.h +2306 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp ...ted_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp +17473 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui6.h ...rated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui6.h +2226 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp ...ted_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp +12317 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui7.h ...rated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui7.h +1941 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp ...ted_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp +1564 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui8.h ...rated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui8.h +1335 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp ...ted_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp +13004 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui9.h ...rated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui9.h +2168 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui_init.cpp ...cpp_48/com_trolltech_qt_gui/com_trolltech_qt_gui_init.cpp +778 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin.pri ...trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin.pri +6 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp ...rolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp +3821 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.h ..._trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.h +1119 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin_init.cpp ...tech_qt_gui_builtin/com_trolltech_qt_gui_builtin_init.cpp +28 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_network/com_trolltech_qt_network.pri ..._48/com_trolltech_qt_network/com_trolltech_qt_network.pri +8 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_network/com_trolltech_qt_network0.cpp ...48/com_trolltech_qt_network/com_trolltech_qt_network0.cpp +6711 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_network/com_trolltech_qt_network0.h ...p_48/com_trolltech_qt_network/com_trolltech_qt_network0.h +1478 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_network/com_trolltech_qt_network1.cpp ...48/com_trolltech_qt_network/com_trolltech_qt_network1.cpp +3385 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_network/com_trolltech_qt_network1.h ...p_48/com_trolltech_qt_network/com_trolltech_qt_network1.h +614 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_network/com_trolltech_qt_network_init.cpp ...om_trolltech_qt_network/com_trolltech_qt_network_init.cpp +81 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_opengl/com_trolltech_qt_opengl.pri ...pp_48/com_trolltech_qt_opengl/com_trolltech_qt_opengl.pri +6 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp ...p_48/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp +3978 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.h ...cpp_48/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.h +880 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_opengl/com_trolltech_qt_opengl_init.cpp .../com_trolltech_qt_opengl/com_trolltech_qt_opengl_init.cpp +23 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_sql/com_trolltech_qt_sql.pri ...ated_cpp_48/com_trolltech_qt_sql/com_trolltech_qt_sql.pri +6 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp ...ted_cpp_48/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp +6317 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_sql/com_trolltech_qt_sql0.h ...rated_cpp_48/com_trolltech_qt_sql/com_trolltech_qt_sql0.h +963 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_sql/com_trolltech_qt_sql_init.cpp ...cpp_48/com_trolltech_qt_sql/com_trolltech_qt_sql_init.cpp +25 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_svg/com_trolltech_qt_svg.pri ...ated_cpp_48/com_trolltech_qt_svg/com_trolltech_qt_svg.pri +6 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp ...ted_cpp_48/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp +1585 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_svg/com_trolltech_qt_svg0.h ...rated_cpp_48/com_trolltech_qt_svg/com_trolltech_qt_svg0.h +271 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_svg/com_trolltech_qt_svg_init.cpp ...cpp_48/com_trolltech_qt_svg/com_trolltech_qt_svg_init.cpp +15 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_uitools/com_trolltech_qt_uitools.pri ..._48/com_trolltech_qt_uitools/com_trolltech_qt_uitools.pri +6 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp ...48/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp +354 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.h ...p_48/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.h +73 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_uitools/com_trolltech_qt_uitools_init.cpp ...om_trolltech_qt_uitools/com_trolltech_qt_uitools_init.cpp +11 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_webkit/com_trolltech_qt_webkit.pri ...pp_48/com_trolltech_qt_webkit/com_trolltech_qt_webkit.pri +6 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp ...p_48/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp +5836 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.h ...cpp_48/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.h +1266 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_webkit/com_trolltech_qt_webkit_init.cpp .../com_trolltech_qt_webkit/com_trolltech_qt_webkit_init.cpp +40 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_xml/com_trolltech_qt_xml.pri ...ated_cpp_48/com_trolltech_qt_xml/com_trolltech_qt_xml.pri +8 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp ...ted_cpp_48/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp +4981 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_xml/com_trolltech_qt_xml0.h ...rated_cpp_48/com_trolltech_qt_xml/com_trolltech_qt_xml0.h +1126 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_xml/com_trolltech_qt_xml1.cpp ...ted_cpp_48/com_trolltech_qt_xml/com_trolltech_qt_xml1.cpp +851 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_xml/com_trolltech_qt_xml1.h ...rated_cpp_48/com_trolltech_qt_xml/com_trolltech_qt_xml1.h +266 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_xml/com_trolltech_qt_xml_init.cpp ...cpp_48/com_trolltech_qt_xml/com_trolltech_qt_xml_init.cpp +59 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns.pri ...trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns.pri +6 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp ...rolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp +2835 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.h ..._trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.h +678 -0
- ThirdParty/PythonQt/generated_cpp_48/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns_init.cpp ...tech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns_init.cpp +30 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core.pri ...ed_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core.pri +12 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core0.cpp ...d_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core0.cpp +8896 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core0.h ...ted_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core0.h +1673 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core1.cpp ...d_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core1.cpp +5543 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core1.h ...ted_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core1.h +1270 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core2.cpp ...d_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core2.cpp +4519 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core2.h ...ted_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core2.h +1215 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core3.cpp ...d_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core3.cpp +724 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core3.h ...ted_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core3.h +235 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core_init.cpp ...p_50/com_trolltech_qt_core/com_trolltech_qt_core_init.cpp +143 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin.pri ...olltech_qt_core_builtin/com_trolltech_qt_core_builtin.pri +6 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin0.cpp ...lltech_qt_core_builtin/com_trolltech_qt_core_builtin0.cpp +3775 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin0.h ...rolltech_qt_core_builtin/com_trolltech_qt_core_builtin0.h +1229 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin_init.cpp ...ch_qt_core_builtin/com_trolltech_qt_core_builtin_init.cpp +28 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui.pri ...ated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui.pri +28 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp ...ted_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp +23300 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui0.h ...rated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui0.h +2728 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp ...ted_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp +17805 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui1.h ...rated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui1.h +2051 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp ...ed_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp +8711 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui10.h ...ated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui10.h +1746 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp ...ed_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp +18584 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui11.h ...ated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui11.h +2509 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp ...ted_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp +11950 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui2.h ...rated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui2.h +2026 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp ...ted_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp +12215 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui3.h ...rated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui3.h +2053 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp ...ted_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp +15883 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui4.h ...rated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui4.h +2224 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp ...ted_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp +13065 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui5.h ...rated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui5.h +2329 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp ...ted_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp +15055 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui6.h ...rated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui6.h +2088 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp ...ted_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp +18342 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui7.h ...rated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui7.h +2155 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp ...ted_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp +517 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui8.h ...rated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui8.h +1165 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp ...ted_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp +10103 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui9.h ...rated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui9.h +1857 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui_init.cpp ...cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui_init.cpp +809 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin.pri ...trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin.pri +6 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp ...rolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp +4019 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.h ..._trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.h +1131 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin_init.cpp ...tech_qt_gui_builtin/com_trolltech_qt_gui_builtin_init.cpp +28 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia.pri ...m_trolltech_qt_multimedia/com_trolltech_qt_multimedia.pri +8 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp ..._trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp +6501 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.h ...om_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.h +1356 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp ..._trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp +2719 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.h ...om_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.h +538 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia_init.cpp ...lltech_qt_multimedia/com_trolltech_qt_multimedia_init.cpp +67 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network.pri ..._50/com_trolltech_qt_network/com_trolltech_qt_network.pri +8 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network0.cpp ...50/com_trolltech_qt_network/com_trolltech_qt_network0.cpp +6578 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network0.h ...p_50/com_trolltech_qt_network/com_trolltech_qt_network0.h +1448 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network1.cpp ...50/com_trolltech_qt_network/com_trolltech_qt_network1.cpp +3155 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network1.h ...p_50/com_trolltech_qt_network/com_trolltech_qt_network1.h +373 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network_init.cpp ...om_trolltech_qt_network/com_trolltech_qt_network_init.cpp +75 -0
- ThirdParty/PythonQt/generated_cpp_50/com_trolltech_qt_opengl/com_trolltech_qt_opengl.pri ...pp_50/com_trolltech_qt_opengl/com_trolltech_qt_opengl.pri +6 -0
- No files found.
Too many changes to show.
To preserve performance only 1000 of 1000+ files are displayed.