54 lines
1.9 KiB
Python
54 lines
1.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (c) 2020 Salvador E. Tropea
|
|
# Copyright (c) 2020 Instituto Nacional de Tecnología Industrial
|
|
# Copyright (c) 2018 John Beard
|
|
# License: GPL-3.0
|
|
# Project: KiBot (formerly KiPlot)
|
|
# Adapted from: https://github.com/johnbeard/kiplot
|
|
from pcbnew import (PLOT_FORMAT_SVG, FromMM, ToMM)
|
|
from .out_any_layer import AnyLayer
|
|
from .drill_marks import DrillMarks
|
|
from .gs import GS
|
|
from .misc import KICAD_VERSION_5_99
|
|
from .macros import macros, document, output_class # noqa: F401
|
|
|
|
|
|
class SVGOptions(DrillMarks):
|
|
def __init__(self):
|
|
super().__init__()
|
|
with document:
|
|
self.line_width = 0.25
|
|
""" [0.02,2] For objects without width [mm] (KiCad 5) """
|
|
self.mirror_plot = False
|
|
""" Plot mirrored """
|
|
self.negative_plot = False
|
|
""" Invert black and white """
|
|
self._plot_format = PLOT_FORMAT_SVG
|
|
|
|
def _configure_plot_ctrl(self, po, output_dir):
|
|
super()._configure_plot_ctrl(po, output_dir)
|
|
po.SetMirror(self.mirror_plot)
|
|
if GS.kicad_version_n < KICAD_VERSION_5_99:
|
|
po.SetLineWidth(FromMM(self.line_width))
|
|
po.SetNegative(self.negative_plot)
|
|
|
|
def read_vals_from_po(self, po):
|
|
super().read_vals_from_po(po)
|
|
if GS.kicad_version_n < KICAD_VERSION_5_99:
|
|
self.line_width = ToMM(po.GetLineWidth())
|
|
self.negative_plot = po.GetNegative()
|
|
self.mirror_plot = po.GetMirror()
|
|
|
|
|
|
@output_class
|
|
class SVG(AnyLayer):
|
|
""" SVG (Scalable Vector Graphics)
|
|
Exports the PCB to a format suitable for 2D graphics software.
|
|
Unlike bitmaps SVG drawings can be scaled without losing resolution.
|
|
This output is what you get from the File/Plot menu in pcbnew. """
|
|
def __init__(self):
|
|
super().__init__()
|
|
with document:
|
|
self.options = SVGOptions
|
|
""" [dict] Options for the `svg` output """
|