This page was generated from docs/documents/notebooks/design/primitives/plates.ipynb.
Interactive online version: Binder badge - Download notebook -

Plates

[ ]:
import ada
[ ]:
pl = ada.Plate('pl1', [(0,0), (1,0), (1,1), (0,1)], 0.01)
pl.show()

Rounded edges

[ ]:
pl_rounded = ada.Plate('pl1_rounded', [(0,0,0.2), (1,0,0.2), (1,1,0.2), (0,1,0.2)], 0.01, origin=(0,0,0.5))
(ada.Part('MyPart') / (pl, pl_rounded)).show()