mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
10 lines
195 B
Python
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
|