summaryrefslogtreecommitdiff
path: root/ipl/gprocs/fstars.icn
blob: 3f129c88f2e1c1cb859981769507272e7239b9e6 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
############################################################################
#
#	File:     fstars.icn
#
#	Subject:  Procedure to produce traces of fractal stars
#
#	Author:   Ralph E. Griswold
#
#	Date:     May 23, 1996
#
############################################################################
#
#   This file is in the public domain.
#
############################################################################
#
#  This procedure produces traces of fractal "stars".  For a discussion of
#  fractal stars, see
#
#	Fractals; Endlessly Repeated Geometrical Figures, Hans Lauwerier,
#	Princeton University Press, 1991, pp. 72-77.
#
#  and
#
#	Geometric and Artistic Graphics; Design Generation with
#	Microcomputers, Jean-Paul Delahaye, Macmillan, 1987, pp. 55-63.
#
#  The arguments are:
#
#	x, y, n, p, r, incr, extent
#
#	x	x coordinate of the initial point, default 0
#	y	y coordinate of the initial point, default 0.5
#	n	number of vertices, default 5
#	p	number of phases, default 5
#	r	reduction factor, default 0.35
#	incr	angular increment factor, default 0.8
#	extent	extent of drawing, 1.0
#
#  Chosing values for these arguments that produce interesting results and
#  centering the star in the window is somewhat of an art.  See fstartbl.icn
#  for some good values.
#	
############################################################################
#
#  Links:  gobject
#
############################################################################

link gobject

global size

procedure fstar(x, y, n, p, r, incr, extent, xinit, yinit)	#: fractal stars
   local angle, i, h, m, dist, xloc, yloc

   /size := 500
   /x := 0
   /y := 0.5 * size
   /n := 5			# defaults
   /p := 5
   /r := 0.35
   /incr := 0.8
   /extent := 1.0
   /xinit := 0
   /yinit := 0.5

   incr *:= &pi			# scaling
   extent *:= size
   xloc := xinit * size
   yloc := yinit * size

   n -:= 1			# computational convenience
   p -:= 1

#  suspend Point(x + xloc, y + yloc)		# initial point

   angle := 0

   every i := 0 to ((n + 1) * n ^ p) do {
      m := i
      h := 0
      until (m % n ~= 0) | (h >= p) do {
         m /:= n
         h +:= 1
         }
      dist := extent * r ^ (p - h)
      xloc +:= dist * cos(angle)
      yloc +:= dist * sin(angle)
      suspend Point(x + xloc, y + yloc)
      angle +:= incr
      }

end