We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 878f171 + 2e41bff commit 194cd80Copy full SHA for 194cd80
1 file changed
src/emc/usr_intf/gremlin/gremlin.py
@@ -331,9 +331,9 @@ def load(self,filename = None):
331
for i in range(9):
332
if s.axis_mask & (1<<i):
333
axis = "XYZABCUVW"[i]
334
- if (axis == "A" and a_axis_wrapped) or\
335
- (axis == "B" and b_axis_wrapped) or\
336
- (axis == "C" and c_axis_wrapped):
+ if (axis == "A" and self.a_axis_wrapped) or\
+ (axis == "B" and self.b_axis_wrapped) or\
+ (axis == "C" and self.c_axis_wrapped):
337
pos = s.position[i] % 360.000
338
else:
339
pos = s.position[i]
0 commit comments