Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 782 Bytes

README.md

File metadata and controls

42 lines (26 loc) · 782 Bytes

Canvas Backend to Cadence Rod Objects

PyPI version status

Install

pip install rodlayout

Read more in the full documentation.

from skillbridge import Workspace
from geometry import Rect, Group

from rodlayout import Canvas, Layer

Workspace.open().make_current()


r = Rect[0:2, 0:4, Layer('M1', 'drawing')]

c = Canvas()
c.append(r)

rod, = c.draw()
print(rod)  # rect@...

r2 = Rect[0:4, 0:2, Layer('M2', 'drawing')]
c = Canvas()
c.append(Group([r, r2]))
db, = c.draw()

print(db)  # figGroup@...