Mitch Bailey
02/16/2022, 8:04 AMTim Edwards
02/16/2022, 12:58 PMselect pick ; select flat ; select keep
, but I just tried that and the flattened selection vanishes on the last command, so I need to go figure out what's up with that. Seems to be an error with the select flat
command.Tim Edwards
02/16/2022, 3:10 PMtech unlock * ; select cell ; select area ; copy n 0 ; select cell ; delete
. The select area
may pick up material outside of the cell being flattened this way.Mitch Bailey
02/16/2022, 3:28 PMTim Edwards
02/16/2022, 3:35 PMtech unlock * ; select cell ; select pick ; select flat ; move e 0 ; undo ; select keep
. In other words, select flat
puts it into some weird state, but then running a command and undoing it gets it out of that state. That should be enough information for me to debug from.Tim Edwards
02/16/2022, 4:31 PMselect flat
command did not recompute the selection bounding box, which meant that the only thing that was seen in the selection during a search was whatever was in the unit area (0, 0) to (1, 1). After the fix, the following sequence of commands will do a "flatten in place": tech unlock * ; select cell ; select pick ; select flat ; select keep
.Mitch Bailey
02/16/2022, 4:45 PMselect pick
deletes the selection from the layout. Is this like ctrl-X in windows, i.e. delete and save to something like a clipboard?