- overwritten the Beta_8.995 branch with the Gerber_Editor_Upgrade branch

This commit is contained in:
Marius Stanciu
2023-05-24 18:07:05 +03:00
parent c23d0c4ed6
commit 63071a9bae
214 changed files with 22249 additions and 6251 deletions

View File

@@ -10,12 +10,16 @@
# File modified by: Marius Stanciu #
# ##########################################################
from PyQt6 import QtWidgets, QtCore
from appGUI.GUIElements import FCCheckBox
from appGUI.ObjectUI import GerberObjectUI
from appParsers.ParseGerber import Gerber
from appObjects.AppObjectTemplate import FlatCAMObj, ObjectDeleted, ValidationError
from shapely.geometry import MultiLineString, LinearRing
from camlib import flatten_shapely_geometry
from appParsers.ParseGerber import Gerber
from appObjects.AppObjectTemplate import *
from shapely import MultiLineString, LinearRing, MultiPolygon, Polygon, LineString, Point
from shapely.ops import unary_union
import numpy as np
from copy import deepcopy
@@ -903,7 +907,7 @@ class GerberObject(FlatCAMObj, Gerber):
Gerber.convert_units(self, units)
# self.obj_options['isotooldia'] = float(self.obj_options['isotooldia']) * factor
# self.obj_options['isotd_list'] = float(self.obj_options['isotd_list']) * factor
# self.obj_options['bboxmargin'] = float(self.obj_options['bboxmargin']) * factor
def plot(self, kind=None, **kwargs):