View Single Post
Old 01-12-12, 04:42 PM   #10
Madox58
Stowaway
 
Posts: n/a
Downloads:
Uploads:
Default

Here's what I came up with that works for me so far.

Copy this script and save with the.esp extension......
-----------------------------------------
%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: 0 0 400 800
%%Creator: Gernot Hoffmann
%%Title: N Circle Segment
%%CreationDate: November 07/2008

/mm {2.834646 mul} def
/x 100 mm def
/s 100 mm def
x x translate
s s scale % 1 --> 100mm

0.25 mm s div setlinewidth
0 0 1 setrgbcolor

0 0 1 0 360 arc
stroke

1 0 0 setrgbcolor

/N 30 def % N segments
/da 360 N div def
/an 0 def
1 1 N
{pop
0 0 moveto
an cos an sin lineto
/an an da add def
} for
stroke

showpage

----------------------------

N 30 is the division so change that as you wish.

Open it with PS as the default 8.5 by 11 document.
Use the Magic wand to select the outter ring and scale that as needed.
Save as needed and use it as a template for placeing stuff.


I can whack out those 30 bolts real quick now!!
  Reply With Quote