[pubgit-commits-list] cpMesh branch master updated. 6d6bf5d5e3b9318a507216f2f231c32299d1a941

root root at tux.creatis.insa-lyon.fr
Wed Dec 10 18:03:00 CET 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "itk-based mesh processing library with an interactive application to modify image segmentations".

The branch, master has been updated
       via  6d6bf5d5e3b9318a507216f2f231c32299d1a941 (commit)
      from  de28025e5f1835fba69cb0a6666d02f0b7daec0d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.creatis.insa-lyon.fr/pubgit/?p=cpMesh.git;a=commitdiff;h=6d6bf5d5e3b9318a507216f2f231c32299d1a941
commit 6d6bf5d5e3b9318a507216f2f231c32299d1a941
Author: Leonardo Florez-Valencia <florez-l at javeriana.edu.co>
Date:   Wed Dec 10 18:02:51 2014 +0100

    QuadEdgeMesh ported to cpPlugins/Extensions


-----------------------------------------------------------------------

Summary of changes:
 .../CMakeLists.txt                                 |     3 +-
 .../MainWnd.cxx                                    |   110 +-
 .../MainWnd.h                                      |    14 +-
 .../MainWnd_LoadPlugins.cxx                        |   238 +
 .../idms.plugins                                   |     1 -
 .../idms.plugins.in                                |    16 +
 appli/examples/CMakeLists.txt                      |     5 -
 .../examples/example_InternalForceSimplexMesh.cxx  |    12 +-
 appli/examples/example_QuadEdgeDecimation.cxx      |   104 -
 .../examples/example_QuadEdgeMeshToSimplexMesh.cxx |     8 +-
 appli/examples/example_ReadOBJAsQuadEdgeMesh.cxx   |    35 -
 appli/examples/example_ReadQuadEdgeMesh.cxx        |    34 -
 .../examples/example_ReadVTKMeshAsQuadEdgeMesh.cxx |    35 -
 appli/examples/example_RenderDualMesh.cxx          |    13 +-
 appli/examples/example_RenderQuadEdgeMesh.cxx      |   109 -
 appli/examples/example_SimplexMeshDeleteEdge.cxx   |    12 +-
 data/mesh_00.vtk                                   |    96 -
 data/mesh_01.obj                                   | 12446 -------------------
 data/mesh_02.obj                                   |  7214 -----------
 data/mesh_03.vtk                                   |    28 -
 data/mesh_04.vtk                                   |  5461 --------
 data/mesh_05.obj                                   |  8863 -------------
 data/mesh_06.vtk                                   |    12 -
 lib/cpm/DataStructures/QuadEdge.h                  |   465 -
 lib/cpm/DataStructures/QuadEdge.hxx                |   238 -
 lib/cpm/DataStructures/QuadEdgeCell.h              |   124 -
 lib/cpm/DataStructures/QuadEdgeCell.hxx            |   256 -
 lib/cpm/DataStructures/QuadEdgeIterators.h         |   171 -
 lib/cpm/DataStructures/QuadEdgeIterators.hxx       |   275 -
 lib/cpm/DataStructures/QuadEdgeMesh.h              |   283 -
 lib/cpm/DataStructures/QuadEdgeMesh.hxx            |   528 -
 lib/cpm/DataStructures/SimplexMesh.h               |    12 +-
 lib/cpm/Dummy.cxx                                  |     5 +
 lib/cpm/IO/MeshReader.h                            |    62 -
 lib/cpm/IO/MeshReader.hxx                          |    92 -
 lib/cpm/IO/WaveFrontOBJReader.h                    |    79 -
 lib/cpm/IO/WaveFrontOBJReader.hxx                  |   123 -
 lib/cpm/VTK/MeshMapper.cxx                         |   234 -
 lib/cpm/VTK/MeshMapper.h                           |   101 -
 lib/cpm/VTK/OpenGLMeshMapper.cxx                   |   627 -
 lib/cpm/VTK/OpenGLMeshMapper.h                     |    84 -
 41 files changed, 345 insertions(+), 38283 deletions(-)
 create mode 100644 appli/InteractiveDeformableMeshSegmentation/MainWnd_LoadPlugins.cxx
 delete mode 100644 appli/InteractiveDeformableMeshSegmentation/idms.plugins
 create mode 100644 appli/InteractiveDeformableMeshSegmentation/idms.plugins.in
 delete mode 100644 appli/examples/example_QuadEdgeDecimation.cxx
 delete mode 100644 appli/examples/example_ReadOBJAsQuadEdgeMesh.cxx
 delete mode 100644 appli/examples/example_ReadQuadEdgeMesh.cxx
 delete mode 100644 appli/examples/example_ReadVTKMeshAsQuadEdgeMesh.cxx
 delete mode 100644 appli/examples/example_RenderQuadEdgeMesh.cxx
 delete mode 100644 data/mesh_00.vtk
 delete mode 100644 data/mesh_01.obj
 delete mode 100644 data/mesh_02.obj
 delete mode 100644 data/mesh_03.vtk
 delete mode 100644 data/mesh_04.vtk
 delete mode 100644 data/mesh_05.obj
 delete mode 100644 data/mesh_06.vtk
 delete mode 100644 lib/cpm/DataStructures/QuadEdge.h
 delete mode 100644 lib/cpm/DataStructures/QuadEdge.hxx
 delete mode 100644 lib/cpm/DataStructures/QuadEdgeCell.h
 delete mode 100644 lib/cpm/DataStructures/QuadEdgeCell.hxx
 delete mode 100644 lib/cpm/DataStructures/QuadEdgeIterators.h
 delete mode 100644 lib/cpm/DataStructures/QuadEdgeIterators.hxx
 delete mode 100644 lib/cpm/DataStructures/QuadEdgeMesh.h
 delete mode 100644 lib/cpm/DataStructures/QuadEdgeMesh.hxx
 create mode 100644 lib/cpm/Dummy.cxx
 delete mode 100644 lib/cpm/IO/MeshReader.h
 delete mode 100644 lib/cpm/IO/MeshReader.hxx
 delete mode 100644 lib/cpm/IO/WaveFrontOBJReader.h
 delete mode 100644 lib/cpm/IO/WaveFrontOBJReader.hxx
 delete mode 100644 lib/cpm/VTK/MeshMapper.cxx
 delete mode 100644 lib/cpm/VTK/MeshMapper.h
 delete mode 100644 lib/cpm/VTK/OpenGLMeshMapper.cxx
 delete mode 100644 lib/cpm/VTK/OpenGLMeshMapper.h


hooks/post-receive
-- 
itk-based mesh processing library with an interactive application to modify image segmentations


More information about the Pubgit-commits-list mailing list