Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Add: kicad: fileformat_common: Missing stroke types #79

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/faebryk/libs/kicad/fileformats_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ class C_stroke:
class E_type(SymEnum):
solid = auto()
default = auto()
dash_dot_dot = auto()
dash_dot = auto()
dash = auto()
dot = auto()

width: float
type: E_type
Expand Down