1
0
mirror of git://projects.qi-hardware.com/kicad-libs.git synced 2024-11-08 07:42:30 +02:00

components/gencon.pl: put spaces around operators

This commit is contained in:
Werner Almesberger 2016-09-13 19:35:37 -03:00
parent f74400f7bc
commit c3ebae8a40

View File

@ -26,8 +26,8 @@ for ($x = 1; $x <= 40; $x++) {
$n = 1; $n = 1;
for ($px = 1; $px <= $x; $px++) { for ($px = 1; $px <= $x; $px++) {
for ($py = 1; $py <= $y; $py++) { for ($py = 1; $py <= $y; $py++) {
print "X $n $n ".(400*($py-1.5)*2)." ". print "X $n $n " . (400 * ($py - 1.5) * 2) .
($h-$px*100+50)." 300 ". " " . ($h - $px * 100 + 50) . " 300 " .
("?", "R", "L")[$py] . " 50 50 1 1 P\n"; ("?", "R", "L")[$py] . " 50 50 1 1 P\n";
$n++; $n++;
} }