<@U01TXR5KECF>: Since nonmanhattan geometry in ma...
# magic
t
@User: Since nonmanhattan geometry in magic is done with split tiles, the basic command is just to draw a triangle in the cursor box using
splitpaint
(example:
splitpaint se m1
. The inverse is
spliterase
). However, if you want to draw a wire at an angle, you probably want the
wire segment
command (example:
wire segment m1 0.5um 0 0 50um 50um
) and if you want to draw an arbitrary shape, you may want the
polygon
command (example:
polygon m1 0 0 10um 0 15um 5um 5um 5um
).
l
Thanks Tim.