- made FlatCAMExcellon and FlatCAMGerber into their own files in the flatcamParser folder

This commit is contained in:
Marius Stanciu 2019-10-06 07:14:10 +03:00 committed by Marius
parent ce9c15a2ed
commit 8762b115c9
7 changed files with 3418 additions and 3404 deletions

View File

@ -16,6 +16,8 @@ from flatcamGUI.ObjectUI import *
from FlatCAMCommon import LoudDict
from flatcamGUI.PlotCanvasLegacy import ShapeCollectionLegacy
from camlib import *
from flatcamParsers.ParseExcellon import Excellon
from flatcamParsers.ParseGerber import Gerber
import itertools
import tkinter as tk

View File

@ -15,6 +15,7 @@ CAD program, and create G-Code for Isolation routing.
- working in adding to the Optimal Tool the rest of the distances found in the Gerber and the locations associated; added GUI
- added display of the results for the Rules Check Tool in a formatted way
- made the Rules Check Tool document window Read Only
- made FlatCAMExcellon and FlatCAMGerber into their own files in the flatcamParser folder
5.10.2019

3408
camlib.py

File diff suppressed because it is too large Load Diff

View File

@ -19,6 +19,7 @@ from rtree import index as rtindex
from camlib import *
from flatcamGUI.GUIElements import FCEntry, FCComboBox, FCTable, FCDoubleSpinner, LengthEntry, RadioSet, SpinBoxDelegate
from flatcamEditors.FlatCAMGeoEditor import FCShapeTool, DrawTool, DrawToolShape, DrawToolUtilityShape, FlatCAMGeoEditor
from flatcamParsers.ParseExcellon import Excellon
from copy import copy, deepcopy

View File

@ -24,6 +24,7 @@ from camlib import *
from flatcamGUI.GUIElements import FCEntry, FCComboBox, FCTable, FCDoubleSpinner, LengthEntry, RadioSet, \
SpinBoxDelegate, EvalEntry, EvalEntry2, FCInputDialog, FCButton, OptionalInputSection, FCCheckBox
from FlatCAMObj import FlatCAMGerber
from flatcamParsers.ParseGerber import Gerber
from FlatCAMTool import FlatCAMTool
from numpy.linalg import norm as numpy_norm

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff