summaryrefslogtreecommitdiff
path: root/ipl/gprogs/design1.icn
blob: 825c5f8af0f043131e6fdedad4f46a9590768a06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
############################################################################
#
#	File:     design1.icn
#
#	Subject:  Program to draw spokes design
#
#	Author:   Ralph E. Griswold
#
#	Date:     February 17, 1995
#
############################################################################
#
#   This file is in the public domain.
#
############################################################################
#
#  This is just an example of an interesting graphic design.  It can
#  easily be modified to produce other designs.
#
############################################################################
#
#  Requires:  Version 9 graphics
#
############################################################################
#
#  Links:  wopen
#
############################################################################

link wopen

procedure main(argl)
   local i, j, k, angle, incr, xpoint, ypoint, size, radius, xc, yc

   i := integer(argl[1]) | 20

   size := 300
   radius := size / 4
   xc := yc := size / 2

   WOpen("label=design", "width=" || size, "height=" || size) |
      stop("*** cannot open window")

   angle := 0.0
   incr := 2 * &pi / i

   every j := 1 to i do {
      spokes(xc + radius * cos(angle), yc + radius * sin(angle),
         radius, i, angle)
      angle +:= incr
      }

   Event()

end

procedure spokes(x, y, r, i, angle)
   local incr, j

   incr := 2 * &pi / i 

   every j := 1 to i do {
      DrawLine(x, y, x + r * cos(angle), y + r * sin(angle))
      angle +:= incr
      }

   return

end