Yahoo Groups archive

Homebrew_PCBs

Index last updated: 2026-03-31 01:30 UTC

Message

Re: board for testing

2008-03-25 by javaguy11111

This perl script will generate what you need for eagle. I used it
generate a pattern for my photoresist testing.


$width=.001;
$offset=.01;
$step=2*$width;
$length=1;
$x=0;
for($i=0;$i<10;$i++){
for($j=0;$j<5;$j++){
print qq(wire $width ( $x 0) ($x $length)\;\n);
$x+=$step;
}
$x+=$offset;
$width=$width+.001;
$step=2*$width;

}

--- In Homebrew_PCBs@yahoogroups.com, Mark Lerman <mlerman@...> wrote:
>
>
> You wouldn't have that in a form Eagle can read, would you?
>
> Mark

Attachments