Skip to content

Commit

Permalink
Remove check for isotropicity in do_rotation
Browse files Browse the repository at this point in the history
This is an unnecessary check and hinders the ability to quickly rotate
an isotropic field for prettier plots.
  • Loading branch information
LSchueler committed Aug 19, 2020
1 parent 684e28a commit 67a228d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gstools/covmodel/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1220,7 +1220,7 @@ def name(self):
def do_rotation(self):
""":any:`bool`: State if a rotation is performed."""
return (
not np.all(np.isclose(self.angles, 0.0)) and not self.is_isotropic
not np.all(np.isclose(self.angles, 0.0))
)

@property
Expand Down

0 comments on commit 67a228d

Please sign in to comment.