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