- fixed a GUI glitch in the Excellon tool table

- added units to some of the parameters in the Properties Tool
This commit is contained in:
Marius Stanciu
2019-12-07 00:25:22 +02:00
committed by Marius
parent 2ca509ca04
commit e15c6da086
5 changed files with 78 additions and 14 deletions

View File

@@ -25,6 +25,7 @@ def dxfpoint2shapely(point):
geo = Point(point.dxf.location).buffer(0.01)
return geo
def dxfline2shapely(line):
try:
@@ -39,6 +40,7 @@ def dxfline2shapely(line):
return geo
def dxfcircle2shapely(circle, n_points=100):
ocs = circle.ocs()

View File

@@ -1,3 +1,10 @@
# ########################################################## ##
# FlatCAM: 2D Post-processing for Manufacturing #
# http://flatcam.org #
# Author: Juan Pablo Caram (c) #
# Date: 2/5/2014 #
# MIT Licence #
# ########################################################## ##
from camlib import Geometry
import FlatCAMApp