Skip to content

Commit

Permalink
fix: intersection visualisation was using the
Browse files Browse the repository at this point in the history
 wrong reference to the fold
  • Loading branch information
Lachlan Grose committed Oct 5, 2021
1 parent 15e7f23 commit 1cf531b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LoopStructural/visualisation/model_plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ def add_intersection_lineation(self, feature, **kwargs):
if 'name' in kwargs:
name = kwargs['name']
del kwargs['name']
intersection = feature.fold.foldframe.calculate_intersection_lineation(
intersection = feature.builder.fold.foldframe.calculate_intersection_lineation(
feature.builder)
gpoints = feature.builder.interpolator.get_gradient_constraints()[:,:6]
npoints = feature.builder.interpolator.get_norm_constraints()[:,:6]
Expand Down

0 comments on commit 1cf531b

Please sign in to comment.