Guest
Hello,
Andrew Beckett wrote the code below for IC5, it simply takes the Via or Vias selected and allows user to change the column or row. We have it bound to the "roll" on the mouse, ctrl-"roll" for column...
For IC6, this isn't possible I don't think. It appears you have to manipulate the master or something, I can't figure it out.
Anyone have an answer?
Thanks,
PolyPusher
procedure(RowAddRoll(incr)
foreach(selObj geGetSelSet()
when(leIsContact(selObj)
selObj~>row=max((selObj~>row||1)+incr 1)
)
)
);
procedure(ColumnAddRoll(incr)
foreach(selObj geGetSelSet()
when(leIsContact(selObj)
selObj~>column=max((selObj~>column||1)+incr 1)
)
)
);
Andrew Beckett wrote the code below for IC5, it simply takes the Via or Vias selected and allows user to change the column or row. We have it bound to the "roll" on the mouse, ctrl-"roll" for column...
For IC6, this isn't possible I don't think. It appears you have to manipulate the master or something, I can't figure it out.
Anyone have an answer?
Thanks,
PolyPusher
procedure(RowAddRoll(incr)
foreach(selObj geGetSelSet()
when(leIsContact(selObj)
selObj~>row=max((selObj~>row||1)+incr 1)
)
)
);
procedure(ColumnAddRoll(incr)
foreach(selObj geGetSelSet()
when(leIsContact(selObj)
selObj~>column=max((selObj~>column||1)+incr 1)
)
)
);