Skip to content

Commit

Permalink
Fix accessory lobe surface with open fissures
Browse files Browse the repository at this point in the history
  • Loading branch information
rchristie committed Jul 4, 2022
1 parent a2be8f3 commit 715d283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scaffoldmaker/meshtypes/meshtype_3d_lung2.py
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ def defineFaceAnnotations(cls, region, options, annotationGroups):
group2d_exterior = fm.createFieldAnd(group2d, is_exterior)

surfaceGroup = findOrCreateAnnotationGroupForTerm(annotationGroups, region, get_lung_term(term + " surface"))
if not openFissures:
if (not openFissures) or (term == "right lung accessory lobe"):
surfaceGroup.getMeshGroup(mesh2d).addElementsConditional(group2d_exterior)

lobe_exterior.update({term + " surface": group2d_exterior})
Expand Down

0 comments on commit 715d283

Please sign in to comment.