Skip to content

Commit

Permalink
Merge pull request #9 from thewtex/strip-exterior
Browse files Browse the repository at this point in the history
BUG: Do not strip exterior tets
  • Loading branch information
thewtex authored Apr 14, 2022
2 parents 1ae0a4c + 1759516 commit 4473bdb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion include/itkCleaverImageToMeshFilter.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,11 @@ CleaverImageToMeshFilter<TInputImage, TOutputMesh>
cleaver::TetMesh *mesh = mesher.getTetMesh();

// Strip Exterior Tets
cleaver::stripExteriorTets(mesh, volume.get(), verbose);
const bool stripExterior = false;
if (stripExterior)
{
cleaver::stripExteriorTets(mesh, volume.get(), verbose);
}

// Fix jacobians if requested.
mesh->fixVertexWindup(verbose);
Expand Down

0 comments on commit 4473bdb

Please # to comment.