Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/emc/usr_intf/gremlin/gremlin.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,9 +331,9 @@ def load(self,filename = None):
for i in range(9):
if s.axis_mask & (1<<i):
axis = "XYZABCUVW"[i]
if (axis == "A" and a_axis_wrapped) or\
(axis == "B" and b_axis_wrapped) or\
(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):
pos = s.position[i] % 360.000
else:
pos = s.position[i]
Expand Down
Loading