Skip to content

Commit 31ed393

Browse files
Use new methode reduce()
pyxem/orix#442
1 parent 2ce4435 commit 31ed393

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/triangulate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def project_orientation(ebsd_locations, ebsd_orientations, pts):
112112
mat, inside_mesh = matrix_projection(ebsd_locations, pts)
113113
mat_red = mat[inside_mesh,:]
114114
q_mean = np.ones((len(pts),4))*np.nan
115-
o2 = ebsd_orientations.map_into_symmetry_reduced_zone()
115+
o2 = ebsd_orientations.reduce()
116116
q = o2.data
117117
qq = np.einsum('pi,ij,ik->pjk', mat_red, q, q)
118118
w, v = np.linalg.eig(qq)

0 commit comments

Comments
 (0)