- minor change
This commit is contained in:
@@ -682,7 +682,11 @@ class CNCJobObject(FlatCAMObj, CNCjob):
|
|||||||
new_x = xmin
|
new_x = xmin
|
||||||
for x in range(cols):
|
for x in range(cols):
|
||||||
new_x += dx
|
new_x += dx
|
||||||
points.append((new_x, new_y))
|
formatted_point = (
|
||||||
|
self.app.dec_format(new_x, self.app.decimals),
|
||||||
|
self.app.dec_format(new_y, self.app.decimals)
|
||||||
|
)
|
||||||
|
points.append(formatted_point)
|
||||||
|
|
||||||
pt_id = 0
|
pt_id = 0
|
||||||
pts_list = []
|
pts_list = []
|
||||||
|
|||||||
Reference in New Issue
Block a user