summaryrefslogtreecommitdiff
path: root/ipl/gprocs/rstartbl.icn
blob: 0e7ec664230ea424362fdd4122d9301505b685d2 (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
############################################################################
#
#	File:     rstartbl.icn
#
#	Subject:  Procedure to produce calls for regular stars
#
#	Author:   Ralph E. Griswold
#
#	Date:     April 8, 1993
#
############################################################################
#
#   This file is in the public domain.
#
############################################################################
#
#  This procedure produces a table of calls from which regular stars
#  can be produced.
#
############################################################################
#
#  See also:  rstars.icn
#
############################################################################
#
#  Links:  calls, rstars
#
############################################################################

link calls
link rstars

procedure rstartbl()
   local rstars

   rstars := table()
   rstars["rstar01"] := call(rstar, [300, 300,  5,  3, 0.45])
   rstars["rstar02"] := call(rstar, [300, 300,  7,  3, 0.45])
   rstars["rstar03"] := call(rstar, [300, 300, 20,  9, 0.45])
   rstars["rstar04"] := call(rstar, [300, 300, 20,  7, 0.45])
   rstars["rstar05"] := call(rstar, [300, 300, 51, 20, 0.45])
   rstars["rstar06"] := call(rstar, [300, 300, 51, 25, 0.45])

   return rstars

end