Source code for pygerber.constants

# -*- coding: utf-8 -*-
from __future__ import annotations


[docs]class Polarity: DARK = "D" CLEAR = "C"
[docs]class Unit: MILLIMETERS = "MM" INCHES = "IN"
[docs]class Interpolation: Linear = 1 ClockwiseCircular = 2 CounterclockwiseCircular = 3
[docs]class Mirroring: No = "N" X = "X" Y = "Y" XY = "XY"