should be a passive rotation

This commit is contained in:
Martin Diehl 2019-10-21 23:17:58 +02:00
parent 9489c04ccb
commit 5e7f9a223b
1 changed files with 1 additions and 1 deletions

View File

@ -1144,7 +1144,7 @@ class Orientation:
def relatedOrientations(self,model):
"""List of orientations related by the given orientation relationship."""
r = self.lattice.relationOperations(model)
return [self.__class__(self.rotation*o,r['lattice']) for o in r['rotations']]
return [self.__class__(o*self.rotation,r['lattice']) for o in r['rotations']]
def reduced(self):
"""Transform orientation to fall into fundamental zone according to symmetry."""