You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
385 B
Plaintext
16 lines
385 B
Plaintext
# Delete all signals in the layout
|
|
#
|
|
# This script is written for EAGLE 5 and removes all traces and airwires in the layout.
|
|
# This script replaces the former DELETE SIGNALS command.
|
|
|
|
DISPLAY = _current_layers_ @;
|
|
DISPLAY ALL;
|
|
RIPUP;
|
|
DISPLAY NONE 19;
|
|
GRID INCH;
|
|
GROUP (-32 -32) (-32 32) (32 32) (32 -32);
|
|
DELETE (>0 0);
|
|
GRID LAST;
|
|
DISPLAY _current_layers_;
|
|
DISPLAY = _current_layers_;
|