Guest
Andrew gave me this code below. It adds to the row of a selected
contact(vias), is there a way to grow wires similarly? Looking into
the Skill functions reference manual it appears not to be as simple.
Thank you!
Eric
procedure(RowAddRoll(incr)
foreach(selObj geGetSelSet()
when(leIsContact(selObj)
selObj~>row=max((selObj~>row||1)+incr 1)
)
)
);
hiSetBindKeys( "Layout" list(
list("Shift Alt<Btn4Down>" "RowAddRoll(1)");
list("Shift Alt<Btn5Down>" "RowAddRoll(-1)");
))
Btn4down and 5 are the "roll" on a mouse.
contact(vias), is there a way to grow wires similarly? Looking into
the Skill functions reference manual it appears not to be as simple.
Thank you!
Eric
procedure(RowAddRoll(incr)
foreach(selObj geGetSelSet()
when(leIsContact(selObj)
selObj~>row=max((selObj~>row||1)+incr 1)
)
)
);
hiSetBindKeys( "Layout" list(
list("Shift Alt<Btn4Down>" "RowAddRoll(1)");
list("Shift Alt<Btn5Down>" "RowAddRoll(-1)");
))
Btn4down and 5 are the "roll" on a mouse.