From 3497033ef84b66f3ba895a21d39b07e5f6ed1bbe Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Mon, 1 Nov 2021 10:12:30 -0300 Subject: [PATCH] Changed kicad-pcb.org -> kicad.org --- kibot/out_dxf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibot/out_dxf.py b/kibot/out_dxf.py index 223a80f7..d670f415 100644 --- a/kibot/out_dxf.py +++ b/kibot/out_dxf.py @@ -34,7 +34,7 @@ class DXFOptions(DrillMarks): super()._configure_plot_ctrl(po, output_dir) po.SetDXFPlotPolygonMode(self.polygon_mode) # DXF_PLOTTER::DXF_UNITS isn't available - # According to https://docs.kicad-pcb.org/doxygen/classDXF__PLOTTER.html 1 is mm + # According to https://docs.kicad.org/doxygen/classDXF__PLOTTER.html 1 is mm po.SetDXFPlotUnits(DXF_UNITS_MILLIMETERS if self.metric_units else DXF_UNITS_INCHES) po.SetPlotMode(SKETCH if self.sketch_plot else FILLED) po.SetUseAuxOrigin(self.use_aux_axis_as_origin)