using cubic symmetry as default for orientation relationships

This commit is contained in:
Martin Diehl 2016-11-21 21:06:52 +01:00
parent ad14f52756
commit 1c68cf1fd3
1 changed files with 2 additions and 2 deletions

View File

@ -993,7 +993,7 @@ class Orientation:
def related(self,
relationModel,
direction,
targetSymmetry = None):
targetSymmetry = 'cubic'):
"""
Orientation relationship
@ -1241,4 +1241,4 @@ class Orientation:
rot=np.dot(otherMatrix,myMatrix.T)
return Orientation(matrix=np.dot(rot,self.asMatrix())) # no symmetry information ??
return Orientation(matrix=np.dot(rot,self.asMatrix()),symmetry=targetSymmetry)