[root]/Modules/Meshing
Adapter
(15 files, 1514 lines)
BoundingBox
(0 files, 0 lines)
BuildingBlock
(147 files, 43684 lines)
Resources
(185 files, 31886 lines)
CommandLine
(0 files, 0 lines)
VoxelMeshingModule
(0 files, 0 lines)
ImageData
(0 files, 0 lines)
Resources
(0 files, 0 lines)
Common
(106 files, 23543 lines)
Filter
(117 files, 31369 lines)
IA_FEMesh
(11 files, 1104 lines)
IO
(17 files, 3056 lines)
Mesh
(19 files, 3955 lines)
Testing
(4 files, 1059 lines)
Widgets
(40 files, 23002 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 11 (100.0%) | 122 (100.0%) | 11.0 |
| clisle | 4 (36.4%) | 74 (60.7%) | 18.5 |
| vmagnotta | 1 (9.1%) | 24 (19.7%) | 24.0 |
| barre | 1 (9.1%) | 22 (18.0%) | 22.0 |
| millerjv | 1 (9.1%) | 1 (0.8%) | 1.0 |
| freudling | 1 (9.1%) | 1 (0.8%) | 1.0 |
| pieper | 1 (9.1%) | 0 (0.0%) | 0.0 |
| jcfr | 2 (18.2%) | 0 (0.0%) | 0.0 |
ENH: In CMakeLists.txt, change deprecated SUBDIRS command into ADD_SUBDIRECTORY
See http://cmake.org/cmake/help/cmake-2-8-docs.html#command:subdirs
when subdirs command was taking a list of directory, change it
using the following pattern:
Before:
subdirs(sagarmatha kumbhu eiger)
After:
SET(dirs
sagarmatha
kumbhu
eiger
)
FOREACH(dir ${dirs})
ADD_SUBDIRECTORY(${dir})
ENDFOREACH(dir)
0 lines of code changed in 1 file:
ENH: Update CMakeLists.txt - CMake 2.6 is now required
The following line have been added:
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
IF(COMMAND CMAKE_POLICY)
CMAKE_POLICY(SET CMP0003 NEW)
ENDIF(COMMAND CMAKE_POLICY)
MARK_AS_ADVANCED(CMAKE_BACKWARDS_COMPATIBILITY)
0 lines of code changed in 1 file:
COMP: fix include dependency order
0 lines of code changed in 1 file:
BUG: Added license for MIMX Meshing Module
36 lines of code changed in 1 file:
BUG: changing order to move Adapter before Common in case this resolves build issues.
0 lines of code changed in 1 file:
ENH: Adding Replacement Meshing directory including IA_FEMesh module
38 lines of code changed in 1 file:
ENH: deleting old Meshing module, before replacing with new version, including IA_FEMesh
0 lines of code changed in 1 file:
ENH: Slicer3 Spring Installation Clean Up
22 lines of code changed in 1 file:
BUG: Configuration changes needed now that there is a SlicerBaseCLI library that holds utility code.
1 lines of code changed in 1 file:
COMP: disabled voxelmeshing and some parts of tractography to be able to compile
1 lines of code changed in 1 file:
ENH: Added new Module code to hold the Meshing utilities. The
first adition includes a Voxel Meshing Command Line Execuation
Model program.
24 lines of code changed in 1 file: