- starting to work on Tool Fiducials - created the file

This commit is contained in:
Marius Stanciu 2019-11-20 03:03:12 +02:00 committed by Marius
parent 4c1fdd2e2d
commit 004ede957d
3 changed files with 1130 additions and 0 deletions

View File

@ -14,6 +14,7 @@ CAD program, and create G-Code for Isolation routing.
- removed the f-strings replacing them with the traditional string formatting due of not being supported by older versions of Python 3 - removed the f-strings replacing them with the traditional string formatting due of not being supported by older versions of Python 3
- fixed some TclCommands: MillDrills and OpenGerber - fixed some TclCommands: MillDrills and OpenGerber
- fixed bug in Tool Subtract that did not allow subtracting Gerber objects - fixed bug in Tool Subtract that did not allow subtracting Gerber objects
- starting to work on Tool Fiducials - created the file
18.11.2019 18.11.2019

File diff suppressed because it is too large Load Diff

View File

@ -30,6 +30,7 @@ from flatcamTools.ToolQRCode import QRCode
from flatcamTools.ToolRulesCheck import RulesCheck from flatcamTools.ToolRulesCheck import RulesCheck
from flatcamTools.ToolCopperThieving import ToolCopperThieving from flatcamTools.ToolCopperThieving import ToolCopperThieving
from flatcamTools.ToolFiducials import ToolFiducials
from flatcamTools.ToolShell import FCShell from flatcamTools.ToolShell import FCShell
from flatcamTools.ToolSolderPaste import SolderPaste from flatcamTools.ToolSolderPaste import SolderPaste