map_into_symmetry_reduced_zone#
- Orientation.map_into_symmetry_reduced_zone(verbose: bool = False) Misorientation [source]#
Return equivalent transformations which have the smallest angle of rotation as a new misorientation.
- Parameters:
- verbose
Whether to print a progressbar. Default is
False
.
- Returns:
M
A new misorientation object with the assigned symmetry.
Examples
>>> from orix.quaternion.symmetry import C4, C2 >>> data = np.array([[0.5, 0.5, 0.5, 0.5], [0, 1, 0, 0]]) >>> M = Misorientation(data) >>> M.symmetry = (C4, C2) >>> M.map_into_symmetry_reduced_zone() Misorientation (2,) 4, 2 [[-0.7071 0.7071 0. 0. ] [ 0. 1. 0. 0. ]]