Made sketch_plot default to false when absent.

This commit is contained in:
Salvador E. Tropea 2020-06-24 11:59:13 -03:00
parent a63e12579b
commit 505039332b
3 changed files with 6 additions and 3 deletions

View File

@ -21,7 +21,8 @@ class DXF(AnyLayer):
""" drill_marks what to use to indicate the drill places, can be none, small or full (for real scale) """
self.polygon_mode = True
""" plot using the contour, instead of the center line """
self.sketch_plot = True
self.sketch_plot = False
""" don't fill objects, just draw the outline """
@property
def drill_marks(self):

View File

@ -16,7 +16,8 @@ class HPGL(AnyLayer):
with document:
self.mirror_plot = False
""" plot mirrored """
self.sketch_plot = True
self.sketch_plot = False
""" don't fill objects, just draw the outline """
self.scaling = 0
""" scale factor """
self._drill_marks = 'full'

View File

@ -20,7 +20,8 @@ class PS(AnyLayer):
""" plot mirrored """
self.negative_plot = False
""" invert black and white """
self.sketch_plot = True
self.sketch_plot = False
""" don't fill objects, just draw the outline """
self.scaling = 2
""" scale factor """
self._drill_marks = 'full'