Fixed arc offset.
This commit is contained in:
parent
0c1b863755
commit
ae0bf8068b
@ -1328,8 +1328,18 @@ void get_coordinates()
|
|||||||
void get_arc_coordinates()
|
void get_arc_coordinates()
|
||||||
{
|
{
|
||||||
get_coordinates();
|
get_coordinates();
|
||||||
if(code_seen('I')) offset[0] = code_value();
|
if(code_seen('I')) {
|
||||||
if(code_seen('J')) offset[1] = code_value();
|
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()
|
void prepare_move()
|
||||||
|
Loading…
Reference in New Issue
Block a user