Files
metabuilder/pcbgenerator/boardforge/Pad.py
T
git 04d8515a73 feat: Add PCB generator
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 17:18:12 +00:00

10 lines
195 B
Python

class Pad:
def __init__(self, name, x, y, w, h, layer="GTL"):
self.name = name
self.x = x
self.y = y
self.w = w
self.h = h
self.layer = layer