- changed the Jump To icon and reverted some changes to the parseGerber and ParseExcellon classes

This commit is contained in:
Marius Stanciu 2019-10-06 16:37:45 +03:00 committed by Marius
parent a6b89dbf3a
commit 1a841e3fdc
5 changed files with 3 additions and 44 deletions

View File

@ -19,6 +19,7 @@ CAD program, and create G-Code for Isolation routing.
- moved the ApertureMacro class from camlib to ParseGerber file
- moved back the ApertureMacro class to camlib for now and made some import changes in the new ParseGerber and ParseExcellon classes
- some changes to the tests - perhaps I will try adding a few tests in the future
- changed the Jump To icon and reverted some changes to the parseGerber and ParseExcellon classes
5.10.2019

View File

@ -1,32 +1,13 @@
from camlib import Geometry
import FlatCAMApp
from camlib import *
import FlatCAMTranslation as fcTranslate
from shapely.geometry import Polygon, Point, LineString, MultiPolygon
from shapely.ops import cascaded_union
import shapely.affinity as affinity
import re
import traceback
import gettext
import builtins
import numpy as np
from numpy import Inf
import logging
if '_' not in builtins.__dict__:
_ = gettext.gettext
log = logging.getLogger('base2')
log.setLevel(logging.DEBUG)
formatter = logging.Formatter('[%(levelname)s] %(message)s')
handler = logging.StreamHandler()
handler.setFormatter(formatter)
log.addHandler(handler)
class Excellon(Geometry):
"""

View File

@ -1,35 +1,12 @@
from camlib import Geometry, ApertureMacro, parse_gerber_number, arc, arctan2, arc_angle
import FlatCAMApp
from camlib import *
import FlatCAMTranslation as fcTranslate
from shapely.geometry import Polygon, Point, LineString, MultiPolygon
from shapely.ops import cascaded_union
import shapely.affinity as affinity
from shapely.geometry import box as shply_box
import re
import traceback
from copy import deepcopy
import gettext
import builtins
import numpy as np
from numpy import Inf
from math import sqrt, pi, sin, cos
import sys
import logging
if '_' not in builtins.__dict__:
_ = gettext.gettext
log = logging.getLogger('base2')
log.setLevel(logging.DEBUG)
formatter = logging.Formatter('[%(levelname)s] %(message)s')
handler = logging.StreamHandler()
handler.setFormatter(formatter)
log.addHandler(handler)
class Gerber(Geometry):
"""

Binary file not shown.

Before

Width:  |  Height:  |  Size: 489 B

After

Width:  |  Height:  |  Size: 423 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 629 B

After

Width:  |  Height:  |  Size: 684 B