From 045f4c3061f7175df08058a6c7dbaec4dd614f49 Mon Sep 17 00:00:00 2001 From: ian Date: Sun, 29 Mar 2009 15:44:07 +0000 Subject: [PATCH] tickmarks at 50mm intervals, and all the way to 300mm past each side --- layout/layout | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layout/layout b/layout/layout index 1186a78..1f58a19 100755 --- a/layout/layout +++ b/layout/layout @@ -1845,8 +1845,8 @@ while (<>) { " -%d -%d rmoveto 0 %d rlineto stroke\n". " } def\n", $ticklen, $ticklen*2, $ticklen, $ticklen, $ticklen*2); - for ($tick_x= $min_x; $tick_x < $max_x; $tick_x += 150) { - for ($tick_y= $min_y; $tick_y < $max_y; $tick_y += 150) { + for ($tick_x= $min_x - 300; $tick_x < $max_x + 300; $tick_x += 50) { + for ($tick_y= $min_y - 300; $tick_y < $max_y + 300; $tick_y += 50) { o(sprintf " %f %f regmark\n", $tick_x, $tick_y); } } -- 2.30.2