tioga 1.4 → 1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. data/Tioga_README +177 -139
  2. data/split/Dtable/dtable.c +3 -0
  3. data/split/Dtable/namespace.h +7 -3
  4. data/split/Dtable/symbols.h +2 -2
  5. data/split/Dvector/dvector.c +3 -2
  6. data/split/Dvector/namespace.h +7 -3
  7. data/split/Dvector/symbols.h +2 -2
  8. data/split/Flate/flate.c +2 -1
  9. data/split/Flate/namespace.h +7 -3
  10. data/split/Flate/symbols.h +2 -2
  11. data/split/Function/extconf.rb +1 -1
  12. data/split/Function/function.c +38 -6
  13. data/split/Function/joint_qsort.c +1 -2
  14. data/split/Function/namespace.h +7 -3
  15. data/split/Function/symbols.h +2 -2
  16. data/split/Tioga/axes.c +4 -5
  17. data/split/Tioga/figures.c +1 -0
  18. data/split/Tioga/figures.h +5 -3
  19. data/split/Tioga/lib/Arcs_and_Circles.rb +1 -1
  20. data/split/Tioga/lib/ColorConstants.rb +9 -9
  21. data/split/Tioga/lib/Creating_Paths.rb +1 -1
  22. data/split/Tioga/lib/FigMkr.rb +25 -23
  23. data/split/Tioga/lib/FigureConstants.rb +2 -2
  24. data/split/Tioga/lib/Figures_and_Plots.rb +6 -6
  25. data/split/Tioga/lib/Images.rb +2 -2
  26. data/split/Tioga/lib/MarkerConstants.rb +3 -3
  27. data/split/Tioga/lib/Markers.rb +6 -6
  28. data/split/Tioga/lib/Page_Frame_Bounds.rb +1 -1
  29. data/split/Tioga/lib/Rectangles.rb +1 -1
  30. data/split/Tioga/lib/Shading.rb +2 -2
  31. data/split/Tioga/lib/Special_Paths.rb +5 -5
  32. data/split/Tioga/lib/Strokes.rb +2 -2
  33. data/split/Tioga/lib/TeX_Text.rb +5 -5
  34. data/split/Tioga/lib/TexPreamble.rb +116 -116
  35. data/split/Tioga/lib/Transparency.rb +2 -2
  36. data/split/Tioga/lib/Using_Paths.rb +1 -1
  37. data/split/Tioga/lib/X_and_Y_Axes.rb +19 -15
  38. data/split/Tioga/lib/irb_tioga.rb +36 -11
  39. data/split/Tioga/lib/maker.rb +201 -0
  40. data/split/Tioga/lib/tioga_ui_cmds.rb +6 -2
  41. data/split/Tioga/namespace.h +7 -3
  42. data/split/Tioga/pdfcoords.c +20 -2
  43. data/split/Tioga/pdfs.h +1 -1
  44. data/split/Tioga/symbols.h +2 -2
  45. data/split/extconf.rb +7 -5
  46. data/split/namespace.h +7 -3
  47. data/split/symbols.c +1 -9
  48. data/split/symbols.h +2 -2
  49. metadata +19 -23
  50. data/split/Dtable/symbols.c +0 -92
  51. data/split/Dvector/symbols.c +0 -92
  52. data/split/Flate/symbols.c +0 -92
  53. data/split/Function/symbols.c +0 -92
  54. data/split/Tioga/symbols.c +0 -92
@@ -11,7 +11,7 @@ module Tioga
11
11
  #
12
12
  # Here are the abc's of the PDF fonts, clockwise from the top: Times_Roman, Times_Italic, Times_Bold, Times_BoldItalic, Helvetica, Helvetica_Oblique, Helvetica_Bold, Helvetica_BoldOblique, Courier, Courier_Oblique, Courier_Bold, Courier_BoldOblique, Symbol, and ZapfDingbats.
13
13
  #
14
- # http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/pdf_fonts.jpg
14
+ # link:images/pdf_fonts.png
15
15
  #
16
16
  # ---
17
17
  #
@@ -24,12 +24,12 @@ module Tioga
24
24
  # as 'Arrow', and a stroked form, such as 'ArrowOpen'. The color of filled markers is determined by the current
25
25
  # setting of fill_color, and, similarly, stroke_color determines the color of stroked markers.
26
26
  #
27
- # http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Marker_Names.jpg
27
+ # link:images/Marker_Names.png
28
28
  #
29
29
  # Here is the full set of options from the ZapfDingbats font. If you would like to use the jet plane as a marker,
30
30
  # just write [ ZapfDingbats, 40 ] where you would have used one of the predefined marker names.
31
31
  #
32
- # http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/dingbats.jpg
32
+ # link:images/dingbats.png
33
33
  #
34
34
 
35
35
  module MarkerConstants
@@ -68,15 +68,15 @@ Dictionary Entries
68
68
 
69
69
  Examples
70
70
 
71
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Marker_Horizontal_Scaling.jpg
71
+ link:images/Marker_Horizontal_Scaling.png
72
72
 
73
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Marker_Vertical_Scaling.jpg
73
+ link:images/Marker_Vertical_Scaling.png
74
74
 
75
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Marker_Italic_Angle.jpg
75
+ link:images/Marker_Italic_Angle.png
76
76
 
77
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Marker_Ascent_Angle.jpg
77
+ link:images/Marker_Ascent_Angle.png
78
78
 
79
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Rendering_Modes.jpg
79
+ link:images/Rendering_Modes.png
80
80
 
81
81
  def marker_shadow_effect
82
82
  t.landscape
@@ -103,7 +103,7 @@ http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Rendering_Modes.jpg
103
103
  'point' => [x+0.022, y-0.03])
104
104
  end
105
105
 
106
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Marker_Shadow_Effect.jpg
106
+ link:images/Marker_Shadow_Effect.png
107
107
 
108
108
  =end
109
109
  def show_marker(dict)
@@ -305,7 +305,7 @@ Example
305
305
  end
306
306
  end
307
307
 
308
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Columns.jpg
308
+ link:images/Columns.png
309
309
  =end
310
310
  def column_margins(dict)
311
311
  end
@@ -68,7 +68,7 @@ class Rectangles < Doc < FigureMaker
68
68
  # The illustration shows a rounded rectangle stroked and used as a clipping path
69
69
  # for showing the image.
70
70
  #
71
- # http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/append_rounded_rect.jpg
71
+ # link:images/append_rounded_rect.png
72
72
  #
73
73
  def append_rounded_rect_to_path(x, y, width, height, dx, dy)
74
74
  end
@@ -40,7 +40,7 @@ Example
40
40
  'colormap' => t.mellow_colormap)
41
41
  end
42
42
 
43
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Axial_Shading.jpg
43
+ link:images/Axial_Shading.png
44
44
 
45
45
  =end
46
46
  def axial_shading(dict)
@@ -90,7 +90,7 @@ Example
90
90
  'extend_start' => true)
91
91
  end
92
92
 
93
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Radial_Shading.jpg
93
+ link:images/Radial_Shading.png
94
94
  =end
95
95
  def radial_shading(dict)
96
96
  end
@@ -46,7 +46,7 @@ Example
46
46
  end
47
47
  end
48
48
 
49
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Contours.jpg
49
+ link:images/Contours.png
50
50
 
51
51
  =end
52
52
  def make_contour(dict)
@@ -99,7 +99,7 @@ Example
99
99
  end
100
100
  end
101
101
 
102
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Steps.jpg
102
+ link:images/Steps.png
103
103
  =end
104
104
  def make_steps(dict)
105
105
  end
@@ -158,7 +158,7 @@ Example
158
158
  end
159
159
  end
160
160
 
161
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Sampled_Splines.jpg
161
+ link:images/Sampled_Splines.png
162
162
 
163
163
  =end
164
164
  def make_spline_interpolated_points(dict)
@@ -199,7 +199,7 @@ Example
199
199
  end
200
200
  end
201
201
 
202
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Splines.jpg
202
+ link:images/Splines.png
203
203
  =end
204
204
  def make_interpolant(dict)
205
205
  end
@@ -298,7 +298,7 @@ Example: 't' in this is the default FigureMaker.
298
298
  end
299
299
  end
300
300
 
301
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Arrows.jpg
301
+ link:images/Arrows.png
302
302
  =end
303
303
  def show_arrow(dict)
304
304
  end
@@ -64,7 +64,7 @@ class Strokes < Doc < FigureMaker
64
64
  # For +LINE_CAP_SQUARE+, the stroke continues beyond the endpoint of the path for a distance equal to half the
65
65
  # line width and is then squared off. See also line_join.
66
66
  #
67
- # http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Caps_and_Joins.jpg
67
+ # link:images/Caps_and_Joins.png
68
68
  def line_cap
69
69
  end
70
70
 
@@ -108,7 +108,7 @@ class Strokes < Doc < FigureMaker
108
108
  # When a path consisting of several subpaths is stroked, each subpath is treated independently --
109
109
  # that is, the dash pattern is restarted and the dash phase is reapplied
110
110
  # to it at the beginning of each subpath.
111
- # http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Line_Types.jpg
111
+ # link:images/Line_Types.png
112
112
  def line_type
113
113
  end
114
114
 
@@ -121,7 +121,7 @@ Examples
121
121
  'scale'=>1.3)
122
122
  end
123
123
 
124
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Math_Typesetting.jpg
124
+ link:images/Math_Typesetting.png
125
125
 
126
126
  def strings
127
127
  t.stroke_rect(0,0,1,1)
@@ -145,7 +145,7 @@ http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Math_Typesetting.jpg
145
145
  end
146
146
  end
147
147
 
148
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Strings.jpg
148
+ link:images/Strings.png
149
149
 
150
150
  def minipages
151
151
  centerx = t.bounds_xmin + 0.5 * t.bounds_width
@@ -171,7 +171,7 @@ http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Strings.jpg
171
171
  'y' => t.bounds_ymin + 0.30 * t.bounds_height, 'angle' => 20)
172
172
  end
173
173
 
174
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Minipages.jpg
174
+ link:images/Minipages.png
175
175
 
176
176
  def framebox
177
177
  centerx = t.bounds_xmin + 0.5 * t.bounds_width
@@ -198,7 +198,7 @@ http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Minipages.jpg
198
198
  'at' => [centerx, y])
199
199
  end
200
200
 
201
- http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Framebox.jpg
201
+ link:images/Framebox.png
202
202
 
203
203
  =end
204
204
  def show_text(dict)
@@ -233,7 +233,7 @@ http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Framebox.jpg
233
233
  # constants: +LEFT_JUSTIFIED+, +CENTERED+, and +RIGHT_JUSTIFIED+.
234
234
  # See also #alignment.
235
235
  #
236
- # http://theory.kitp.ucsb.edu/~paxton/tioga_jpegs/Text_J_and_A.jpg
236
+ # link:images/Text_J_and_A.png
237
237
  def justification
238
238
  end
239
239
 
@@ -156,121 +156,190 @@ module Tioga
156
156
  End_of_preamble
157
157
  COLOR_PREAMBLE = <<'End_of_preamble'
158
158
  % Color constants, generated from ColorConstants.rb
159
+ \definecolor{CornflowerBlue}{rgb}{0.392,0.585,0.930}
160
+ \definecolor{NavajoWhite}{rgb}{1.000,0.870,0.680}
161
+ \definecolor{Fuchsia}{rgb}{1.000,0.000,1.000}
162
+ \definecolor{Seashell}{rgb}{1.000,0.960,0.932}
163
+ \definecolor{LightPlum}{rgb}{0.800,0.600,0.800}
164
+ \definecolor{Lime}{rgb}{0.000,1.000,0.000}
165
+ \definecolor{DarkOliveGreen}{rgb}{0.332,0.420,0.185}
166
+ \definecolor{Periwinkle}{rgb}{0.600,0.000,1.000}
167
+ \definecolor{IndianRed}{rgb}{0.804,0.360,0.360}
168
+ \definecolor{Aqua}{rgb}{0.000,1.000,1.000}
169
+ \definecolor{Thistle}{rgb}{0.848,0.750,0.848}
170
+ \definecolor{MediumSpringGreen}{rgb}{0.000,0.980,0.604}
171
+ \definecolor{DarkViolet}{rgb}{0.580,0.000,0.828}
172
+ \definecolor{RoyalBlue}{rgb}{0.255,0.410,0.884}
173
+ \definecolor{LightDullGreen}{rgb}{0.400,1.000,0.600}
174
+ \definecolor{Brown}{rgb}{0.648,0.165,0.165}
175
+ \definecolor{DarkChocolate}{rgb}{0.400,0.200,0.000}
176
+ \definecolor{Orange}{rgb}{1.000,0.648,0.000}
177
+ \definecolor{Goldenrod}{rgb}{0.855,0.648,0.125}
178
+ \definecolor{SlateGray}{rgb}{0.440,0.500,0.565}
179
+ \definecolor{LightSienna}{rgb}{0.800,0.400,0.000}
180
+ \definecolor{DarkRed}{rgb}{0.545,0.000,0.000}
181
+ \definecolor{Pumpkin}{rgb}{1.000,0.600,0.200}
182
+ \definecolor{LavenderBlue}{rgb}{0.400,0.200,1.000}
183
+ \definecolor{Bisque}{rgb}{1.000,0.894,0.770}
184
+ \definecolor{Wheat}{rgb}{0.960,0.870,0.700}
185
+ \definecolor{Mauve}{rgb}{0.800,0.200,0.400}
186
+ \definecolor{MintCream}{rgb}{0.960,1.000,0.980}
187
+ \definecolor{DodgerBlue}{rgb}{0.116,0.565,1.000}
188
+ \definecolor{Salmon}{rgb}{0.980,0.500,0.448}
189
+ \definecolor{LightGrey}{rgb}{0.828,0.828,0.828}
190
+ \definecolor{Chartreuse}{rgb}{0.498,1.000,0.000}
191
+ \definecolor{PaleTurquoise}{rgb}{0.688,0.932,0.932}
192
+ \definecolor{GreenYellow}{rgb}{0.680,1.000,0.185}
193
+ \definecolor{SpringGreen}{rgb}{0.000,1.000,0.498}
194
+ \definecolor{LightTurquoise}{rgb}{0.200,1.000,0.800}
195
+ \definecolor{DarkGrey}{rgb}{0.664,0.664,0.664}
196
+ \definecolor{DarkSlateGray}{rgb}{0.185,0.310,0.310}
197
+ \definecolor{RedBrown}{rgb}{0.800,0.400,0.200}
198
+ \definecolor{LightBrightGreen}{rgb}{0.000,0.800,0.200}
199
+ \definecolor{BlueViolet}{rgb}{0.540,0.170,0.888}
200
+ \definecolor{MediumOrchid}{rgb}{0.730,0.332,0.828}
201
+ \definecolor{Gainsboro}{rgb}{0.864,0.864,0.864}
202
+ \definecolor{Sienna}{rgb}{0.628,0.320,0.176}
203
+ \definecolor{LightRose}{rgb}{1.000,0.600,0.800}
204
+ \definecolor{Cornsilk}{rgb}{1.000,0.972,0.864}
205
+ \definecolor{Navy}{rgb}{0.000,0.000,0.500}
206
+ \definecolor{Peru}{rgb}{0.804,0.520,0.248}
207
+ \definecolor{Indigo}{rgb}{0.294,0.000,0.510}
208
+ \definecolor{Aquamarine}{rgb}{0.498,1.000,0.830}
209
+ \definecolor{Tomato}{rgb}{1.000,0.390,0.280}
210
+ \definecolor{LimeGreen}{rgb}{0.196,0.804,0.196}
211
+ \definecolor{DarkOrange}{rgb}{1.000,0.550,0.000}
212
+ \definecolor{RoyalPurple}{rgb}{0.400,0.000,0.600}
213
+ \definecolor{LightGold}{rgb}{0.800,0.800,0.400}
214
+ \definecolor{Burgundy}{rgb}{0.600,0.000,0.200}
215
+ \definecolor{MediumTurquoise}{rgb}{0.284,0.820,0.800}
216
+ \definecolor{DeepPink}{rgb}{1.000,0.080,0.576}
217
+ \definecolor{GrassGreen}{rgb}{0.200,0.600,0.000}
218
+ \definecolor{SlateGrey}{rgb}{0.440,0.500,0.565}
219
+ \definecolor{LightSkyBlue}{rgb}{0.530,0.808,0.980}
220
+ \definecolor{DarkCyan}{rgb}{0.000,0.545,0.545}
221
+ \definecolor{OrangeRed}{rgb}{1.000,0.270,0.000}
222
+ \definecolor{LavenderBlush}{rgb}{1.000,0.940,0.960}
223
+ \definecolor{Black}{rgb}{0.000,0.000,0.000}
224
+ \definecolor{White}{rgb}{1.000,1.000,1.000}
225
+ \definecolor{MediumAquamarine}{rgb}{0.400,0.804,0.668}
226
+ \definecolor{DarkRoyalBlue}{rgb}{0.000,0.200,0.800}
227
+ \definecolor{Purple}{rgb}{0.500,0.000,0.500}
228
+ \definecolor{SalmonRed}{rgb}{1.000,0.400,0.400}
159
229
  \definecolor{LightMustard}{rgb}{1.000,0.800,0.400}
160
230
  \definecolor{Chiffon}{rgb}{0.980,0.980,0.824}
161
231
  \definecolor{MistyRose}{rgb}{1.000,0.894,0.884}
162
232
  \definecolor{FireBrick}{rgb}{0.698,0.132,0.132}
163
- \definecolor{SalmonRed}{rgb}{1.000,0.400,0.400}
164
233
  \definecolor{SteelBlue}{rgb}{0.275,0.510,0.705}
165
234
  \definecolor{LightYellow}{rgb}{1.000,1.000,0.880}
166
235
  \definecolor{DarkKhaki}{rgb}{0.740,0.716,0.420}
167
236
  \definecolor{PaleVioletRed}{rgb}{0.860,0.440,0.576}
168
237
  \definecolor{Grey}{rgb}{0.500,0.500,0.500}
238
+ \definecolor{LightCoral}{rgb}{0.940,0.500,0.500}
169
239
  \definecolor{BrickRed}{rgb}{0.645,0.000,0.129}
170
240
  \definecolor{MediumPurple}{rgb}{0.576,0.440,0.860}
171
241
  \definecolor{DarkSlateGrey}{rgb}{0.185,0.310,0.310}
172
242
  \definecolor{RedOrange}{rgb}{0.800,0.200,0.000}
173
- \definecolor{LightCoral}{rgb}{0.940,0.500,0.500}
174
243
  \definecolor{LightSalmon}{rgb}{1.000,0.628,0.480}
175
244
  \definecolor{Crimson}{rgb}{0.800,0.000,0.200}
176
245
  \definecolor{OldLace}{rgb}{0.992,0.960,0.900}
177
246
  \definecolor{GhostWhite}{rgb}{0.972,0.972,1.000}
178
247
  \definecolor{Silver}{rgb}{0.752,0.752,0.752}
248
+ \definecolor{Turquoise}{rgb}{0.250,0.880,0.815}
179
249
  \definecolor{Linen}{rgb}{0.980,0.940,0.900}
180
250
  \definecolor{DarkOrchid}{rgb}{0.600,0.196,0.800}
181
251
  \definecolor{Pink}{rgb}{1.000,0.752,0.796}
182
252
  \definecolor{Ivory}{rgb}{1.000,1.000,0.940}
183
253
  \definecolor{Avocado}{rgb}{0.600,0.600,0.000}
184
- \definecolor{Turquoise}{rgb}{0.250,0.880,0.815}
254
+ \definecolor{BurlyWood}{rgb}{0.870,0.720,0.530}
185
255
  \definecolor{MediumVioletRed}{rgb}{0.780,0.084,0.520}
186
256
  \definecolor{DeepSkyBlue}{rgb}{0.000,0.750,1.000}
187
257
  \definecolor{SaddleBrown}{rgb}{0.545,0.270,0.075}
188
258
  \definecolor{LightGrassGreen}{rgb}{0.400,1.000,0.400}
189
- \definecolor{BurlyWood}{rgb}{0.870,0.720,0.530}
259
+ \definecolor{LightSlateGray}{rgb}{0.468,0.532,0.600}
190
260
  \definecolor{DarkGoldenrod}{rgb}{0.720,0.525,0.044}
191
261
  \definecolor{Orchid}{rgb}{0.855,0.440,0.840}
192
262
  \definecolor{Gray}{rgb}{0.500,0.500,0.500}
193
263
  \definecolor{Smoke}{rgb}{0.950,0.950,0.950}
194
- \definecolor{LightSlateGray}{rgb}{0.468,0.532,0.600}
195
264
  \definecolor{MediumBlue}{rgb}{0.000,0.000,0.804}
196
265
  \definecolor{DarkSalmon}{rgb}{0.912,0.590,0.480}
197
266
  \definecolor{PurpleBlue}{rgb}{0.400,0.200,0.800}
198
267
  \definecolor{LawnGreen}{rgb}{0.488,0.990,0.000}
199
268
  \definecolor{BlanchedAlmond}{rgb}{1.000,0.920,0.804}
200
269
  \definecolor{WhiteSmoke}{rgb}{0.970,0.970,0.970}
270
+ \definecolor{Chocolate}{rgb}{0.824,0.410,0.116}
271
+ \definecolor{LightOliveGreen}{rgb}{0.600,0.800,0.600}
201
272
  \definecolor{Moccasin}{rgb}{1.000,0.894,0.710}
202
273
  \definecolor{FloralWhite}{rgb}{1.000,0.980,0.940}
203
274
  \definecolor{SandyBrown}{rgb}{0.956,0.644,0.376}
204
- \definecolor{LightOliveGreen}{rgb}{0.600,0.800,0.600}
205
- \definecolor{Chocolate}{rgb}{0.824,0.410,0.116}
206
- \definecolor{PapayaWhip}{rgb}{1.000,0.936,0.835}
207
- \definecolor{Honeydew}{rgb}{0.940,1.000,0.940}
208
- \definecolor{AliceBlue}{rgb}{0.940,0.972,1.000}
209
- \definecolor{Tan}{rgb}{0.824,0.705,0.550}
210
275
  \definecolor{LightYellowGreen}{rgb}{0.800,0.800,0.200}
276
+ \definecolor{AliceBlue}{rgb}{0.940,0.972,1.000}
277
+ \definecolor{Honeydew}{rgb}{0.940,1.000,0.940}
211
278
  \definecolor{DarkLavender}{rgb}{0.400,0.200,0.600}
212
- \definecolor{DarkSmoke}{rgb}{0.920,0.920,0.920}
213
- \definecolor{Rose}{rgb}{1.000,0.400,0.600}
214
- \definecolor{LightCrimson}{rgb}{0.864,0.080,0.235}
279
+ \definecolor{PapayaWhip}{rgb}{1.000,0.936,0.835}
280
+ \definecolor{Tan}{rgb}{0.824,0.705,0.550}
215
281
  \definecolor{BrightBlue}{rgb}{0.000,0.400,1.000}
282
+ \definecolor{LightCrimson}{rgb}{0.864,0.080,0.235}
283
+ \definecolor{DarkSmoke}{rgb}{0.920,0.920,0.920}
216
284
  \definecolor{MediumSeaGreen}{rgb}{0.235,0.700,0.444}
217
- \definecolor{Olive}{rgb}{0.500,0.500,0.000}
285
+ \definecolor{Rose}{rgb}{1.000,0.400,0.600}
286
+ \definecolor{Cyan}{rgb}{0.000,1.000,1.000}
287
+ \definecolor{LightSandyBrown}{rgb}{1.000,0.800,0.600}
218
288
  \definecolor{Gold}{rgb}{1.000,0.844,0.000}
289
+ \definecolor{Olive}{rgb}{0.500,0.500,0.000}
219
290
  \definecolor{SkyBlue}{rgb}{0.530,0.808,0.920}
220
- \definecolor{LightSandyBrown}{rgb}{1.000,0.800,0.600}
221
- \definecolor{Cyan}{rgb}{0.000,1.000,1.000}
222
- \definecolor{Plum}{rgb}{0.868,0.628,0.868}
223
- \definecolor{Khaki}{rgb}{0.940,0.900,0.550}
291
+ \definecolor{DarkPeriwinkle}{rgb}{0.400,0.400,1.000}
224
292
  \definecolor{Azure}{rgb}{0.940,1.000,1.000}
225
- \definecolor{Violet}{rgb}{0.932,0.510,0.932}
293
+ \definecolor{Khaki}{rgb}{0.940,0.900,0.550}
226
294
  \definecolor{Magenta}{rgb}{1.000,0.000,1.000}
227
- \definecolor{DarkPeriwinkle}{rgb}{0.400,0.400,1.000}
228
- \definecolor{LightChartreuse}{rgb}{0.800,1.000,0.400}
229
- \definecolor{LightGray}{rgb}{0.828,0.828,0.828}
295
+ \definecolor{Plum}{rgb}{0.868,0.628,0.868}
296
+ \definecolor{Violet}{rgb}{0.932,0.510,0.932}
230
297
  \definecolor{CadetBlue}{rgb}{0.372,0.620,0.628}
231
- \definecolor{YellowGreen}{rgb}{0.800,0.800,0.000}
298
+ \definecolor{LightGray}{rgb}{0.828,0.828,0.828}
232
299
  \definecolor{DimGray}{rgb}{0.410,0.410,0.410}
233
- \definecolor{GrayBlue}{rgb}{0.000,0.400,0.600}
234
- \definecolor{Snow}{rgb}{1.000,0.980,0.980}
235
- \definecolor{LightSlateGrey}{rgb}{0.468,0.532,0.600}
300
+ \definecolor{YellowGreen}{rgb}{0.800,0.800,0.000}
301
+ \definecolor{LightChartreuse}{rgb}{0.800,1.000,0.400}
236
302
  \definecolor{DarkGray}{rgb}{0.664,0.664,0.664}
303
+ \definecolor{LightSlateGrey}{rgb}{0.468,0.532,0.600}
304
+ \definecolor{GrayBlue}{rgb}{0.000,0.400,0.600}
237
305
  \definecolor{PaleGoldenrod}{rgb}{0.932,0.910,0.668}
238
- \definecolor{PurpleGray}{rgb}{0.600,0.600,0.800}
239
- \definecolor{LemonChiffon}{rgb}{1.000,0.980,0.804}
306
+ \definecolor{Snow}{rgb}{1.000,0.980,0.980}
307
+ \definecolor{DarkSeaGreen}{rgb}{0.560,0.736,0.560}
240
308
  \definecolor{Blue}{rgb}{0.000,0.000,1.000}
241
- \definecolor{Yellow}{rgb}{1.000,1.000,0.000}
309
+ \definecolor{LemonChiffon}{rgb}{1.000,0.980,0.804}
242
310
  \definecolor{MediumGreen}{rgb}{0.000,0.600,0.000}
243
- \definecolor{DarkSeaGreen}{rgb}{0.560,0.736,0.560}
244
- \definecolor{SeaGreen}{rgb}{0.180,0.545,0.340}
245
- \definecolor{LightOrchid}{rgb}{0.600,0.400,0.800}
311
+ \definecolor{PurpleGray}{rgb}{0.600,0.600,0.800}
312
+ \definecolor{Yellow}{rgb}{1.000,1.000,0.000}
313
+ \definecolor{ForestGreen}{rgb}{0.132,0.545,0.132}
246
314
  \definecolor{Coral}{rgb}{1.000,0.498,0.312}
315
+ \definecolor{LightOrchid}{rgb}{0.600,0.400,0.800}
247
316
  \definecolor{MustardSeed}{rgb}{0.800,0.600,0.000}
248
- \definecolor{ForestGreen}{rgb}{0.132,0.545,0.132}
317
+ \definecolor{SeaGreen}{rgb}{0.180,0.545,0.340}
318
+ \definecolor{DarkMagenta}{rgb}{0.545,0.000,0.545}
249
319
  \definecolor{AntiqueWhite}{rgb}{0.980,0.920,0.844}
250
- \definecolor{Teal}{rgb}{0.000,0.500,0.500}
320
+ \definecolor{HotPink}{rgb}{1.000,0.410,0.705}
251
321
  \definecolor{Lilac}{rgb}{0.800,0.600,1.000}
252
- \definecolor{DarkMagenta}{rgb}{0.545,0.000,0.545}
253
322
  \definecolor{PeachPuff}{rgb}{1.000,0.855,0.725}
254
- \definecolor{HotPink}{rgb}{1.000,0.410,0.705}
255
- \definecolor{LightCyan}{rgb}{0.880,1.000,1.000}
323
+ \definecolor{Teal}{rgb}{0.000,0.500,0.500}
324
+ \definecolor{DarkTurquoise}{rgb}{0.000,0.808,0.820}
256
325
  \definecolor{BrightPink}{rgb}{1.000,0.400,0.800}
326
+ \definecolor{LightCyan}{rgb}{0.880,1.000,1.000}
257
327
  \definecolor{MediumSlateBlue}{rgb}{0.484,0.408,0.932}
258
- \definecolor{DarkTurquoise}{rgb}{0.000,0.808,0.820}
259
328
  \definecolor{RosyBrown}{rgb}{0.736,0.560,0.560}
260
- \definecolor{SlateBlue}{rgb}{0.415,0.352,0.804}
261
- \definecolor{LightSeaGreen}{rgb}{0.125,0.698,0.668}
329
+ \definecolor{GoldenBrown}{rgb}{0.600,0.400,0.000}
262
330
  \definecolor{DarkBlue}{rgb}{0.000,0.000,0.545}
331
+ \definecolor{LightSeaGreen}{rgb}{0.125,0.698,0.668}
263
332
  \definecolor{OliveDrab}{rgb}{0.420,0.556,0.136}
264
- \definecolor{GoldenBrown}{rgb}{0.600,0.400,0.000}
333
+ \definecolor{SlateBlue}{rgb}{0.415,0.352,0.804}
334
+ \definecolor{Lavender}{rgb}{0.900,0.900,0.980}
335
+ \definecolor{DarkPurpleBlue}{rgb}{0.400,0.000,0.800}
265
336
  \definecolor{Beige}{rgb}{0.960,0.960,0.864}
266
- \definecolor{WarmGray}{rgb}{0.678,0.660,0.562}
267
337
  \definecolor{Maroon}{rgb}{0.500,0.000,0.000}
268
- \definecolor{DarkPurpleBlue}{rgb}{0.400,0.000,0.800}
269
338
  \definecolor{PowderBlue}{rgb}{0.690,0.880,0.900}
270
- \definecolor{Lavender}{rgb}{0.900,0.900,0.980}
271
- \definecolor{LightGreen}{rgb}{0.565,0.932,0.565}
339
+ \definecolor{WarmGray}{rgb}{0.678,0.660,0.562}
272
340
  \definecolor{DimGrey}{rgb}{0.410,0.410,0.410}
273
341
  \definecolor{Cement}{rgb}{0.800,0.800,0.600}
342
+ \definecolor{LightGreen}{rgb}{0.565,0.932,0.565}
274
343
  \definecolor{MidnightBlue}{rgb}{0.098,0.098,0.440}
275
344
  \definecolor{Saffron}{rgb}{1.000,0.800,0.000}
276
345
  \definecolor{Green}{rgb}{0.000,0.500,0.000}
@@ -278,80 +347,11 @@ End_of_preamble
278
347
  \definecolor{LightSteelBlue}{rgb}{0.690,0.770,0.870}
279
348
  \definecolor{PaleGreen}{rgb}{0.596,0.985,0.596}
280
349
  \definecolor{SoftYellow}{rgb}{1.000,1.000,0.400}
281
- \definecolor{BlueGreen}{rgb}{0.000,0.600,0.400}
282
350
  \definecolor{LightBlue}{rgb}{0.680,0.848,0.900}
283
351
  \definecolor{DarkSlateBlue}{rgb}{0.284,0.240,0.545}
352
+ \definecolor{BlueGreen}{rgb}{0.000,0.600,0.400}
284
353
  \definecolor{MediumOrange}{rgb}{1.000,0.400,0.000}
285
354
  \definecolor{Red}{rgb}{1.000,0.000,0.000}
286
- \definecolor{LightPlum}{rgb}{0.800,0.600,0.800}
287
- \definecolor{Fuchsia}{rgb}{1.000,0.000,1.000}
288
- \definecolor{CornflowerBlue}{rgb}{0.392,0.585,0.930}
289
- \definecolor{NavajoWhite}{rgb}{1.000,0.870,0.680}
290
- \definecolor{Seashell}{rgb}{1.000,0.960,0.932}
291
- \definecolor{Aqua}{rgb}{0.000,1.000,1.000}
292
- \definecolor{IndianRed}{rgb}{0.804,0.360,0.360}
293
- \definecolor{DarkOliveGreen}{rgb}{0.332,0.420,0.185}
294
- \definecolor{Lime}{rgb}{0.000,1.000,0.000}
295
- \definecolor{Periwinkle}{rgb}{0.600,0.000,1.000}
296
- \definecolor{Thistle}{rgb}{0.848,0.750,0.848}
297
- \definecolor{Brown}{rgb}{0.648,0.165,0.165}
298
- \definecolor{LightDullGreen}{rgb}{0.400,1.000,0.600}
299
- \definecolor{DarkViolet}{rgb}{0.580,0.000,0.828}
300
- \definecolor{MediumSpringGreen}{rgb}{0.000,0.980,0.604}
301
- \definecolor{RoyalBlue}{rgb}{0.255,0.410,0.884}
302
- \definecolor{DarkChocolate}{rgb}{0.400,0.200,0.000}
303
- \definecolor{LightSienna}{rgb}{0.800,0.400,0.000}
304
- \definecolor{Goldenrod}{rgb}{0.855,0.648,0.125}
305
- \definecolor{Orange}{rgb}{1.000,0.648,0.000}
306
- \definecolor{SlateGray}{rgb}{0.440,0.500,0.565}
307
- \definecolor{Bisque}{rgb}{1.000,0.894,0.770}
308
- \definecolor{LavenderBlue}{rgb}{0.400,0.200,1.000}
309
- \definecolor{DarkRed}{rgb}{0.545,0.000,0.000}
310
- \definecolor{Mauve}{rgb}{0.800,0.200,0.400}
311
- \definecolor{Pumpkin}{rgb}{1.000,0.600,0.200}
312
- \definecolor{Wheat}{rgb}{0.960,0.870,0.700}
313
- \definecolor{Chartreuse}{rgb}{0.498,1.000,0.000}
314
- \definecolor{LightGrey}{rgb}{0.828,0.828,0.828}
315
- \definecolor{DodgerBlue}{rgb}{0.116,0.565,1.000}
316
- \definecolor{MintCream}{rgb}{0.960,1.000,0.980}
317
- \definecolor{Salmon}{rgb}{0.980,0.500,0.448}
318
- \definecolor{DarkGrey}{rgb}{0.664,0.664,0.664}
319
- \definecolor{LightTurquoise}{rgb}{0.200,1.000,0.800}
320
- \definecolor{GreenYellow}{rgb}{0.680,1.000,0.185}
321
- \definecolor{PaleTurquoise}{rgb}{0.688,0.932,0.932}
322
- \definecolor{SpringGreen}{rgb}{0.000,1.000,0.498}
323
- \definecolor{DarkSlateGray}{rgb}{0.185,0.310,0.310}
324
- \definecolor{BlueViolet}{rgb}{0.540,0.170,0.888}
325
- \definecolor{LightBrightGreen}{rgb}{0.000,0.800,0.200}
326
- \definecolor{MediumOrchid}{rgb}{0.730,0.332,0.828}
327
- \definecolor{RedBrown}{rgb}{0.800,0.400,0.200}
328
- \definecolor{Cornsilk}{rgb}{1.000,0.972,0.864}
329
- \definecolor{LightRose}{rgb}{1.000,0.600,0.800}
330
- \definecolor{Gainsboro}{rgb}{0.864,0.864,0.864}
331
- \definecolor{Navy}{rgb}{0.000,0.000,0.500}
332
- \definecolor{Sienna}{rgb}{0.628,0.320,0.176}
333
- \definecolor{DarkOrange}{rgb}{1.000,0.550,0.000}
334
- \definecolor{Aquamarine}{rgb}{0.498,1.000,0.830}
335
- \definecolor{Indigo}{rgb}{0.294,0.000,0.510}
336
- \definecolor{LimeGreen}{rgb}{0.196,0.804,0.196}
337
- \definecolor{Peru}{rgb}{0.804,0.520,0.248}
338
- \definecolor{Tomato}{rgb}{1.000,0.390,0.280}
339
- \definecolor{DeepPink}{rgb}{1.000,0.080,0.576}
340
- \definecolor{Burgundy}{rgb}{0.600,0.000,0.200}
341
- \definecolor{LightGold}{rgb}{0.800,0.800,0.400}
342
- \definecolor{MediumTurquoise}{rgb}{0.284,0.820,0.800}
343
- \definecolor{RoyalPurple}{rgb}{0.400,0.000,0.600}
344
- \definecolor{GrassGreen}{rgb}{0.200,0.600,0.000}
345
- \definecolor{DarkCyan}{rgb}{0.000,0.545,0.545}
346
- \definecolor{LightSkyBlue}{rgb}{0.530,0.808,0.980}
347
- \definecolor{OrangeRed}{rgb}{1.000,0.270,0.000}
348
- \definecolor{SlateGrey}{rgb}{0.440,0.500,0.565}
349
- \definecolor{DarkRoyalBlue}{rgb}{0.000,0.200,0.800}
350
- \definecolor{Black}{rgb}{0.000,0.000,0.000}
351
- \definecolor{LavenderBlush}{rgb}{1.000,0.940,0.960}
352
- \definecolor{MediumAquamarine}{rgb}{0.400,0.804,0.668}
353
- \definecolor{Purple}{rgb}{0.500,0.000,0.500}
354
- \definecolor{White}{rgb}{1.000,1.000,1.000}
355
355
 
356
356
  End_of_preamble
357
357
  end