Fixed arc offset.

master
Erik van der Zalm 13 years ago
parent 0c1b863755
commit ae0bf8068b

@ -1328,8 +1328,18 @@ void get_coordinates()
void get_arc_coordinates()
{
get_coordinates();
if(code_seen('I')) offset[0] = code_value();
if(code_seen('J')) offset[1] = code_value();
if(code_seen('I')) {
offset[0] = code_value();
}
else {
offset[0] = 0.0;
}
if(code_seen('J')) {
offset[1] = code_value();
}
else {
offset[1] = 0.0;
}
}
void prepare_move()

Loading…
Cancel
Save