Archive of the former Yahoo!Groups mailing list: Homebrew PCBs

previous by date index next by date
previous in topic topic list next in topic

Subject: Re: board for testing

From: "javaguy11111" <javaguy11111@...>
Date: 2008-03-25

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