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

Plates

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

Rounded edges

[3]:
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()
[3]: