tioga 1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/Tioga_README +372 -0
- data/lgpl.txt +504 -0
- data/split/Dtable/defs.h +33 -0
- data/split/Dtable/dtable.c +1928 -0
- data/split/Dtable/dtable_intern.h +144 -0
- data/split/Dtable/dvector.h +61 -0
- data/split/Dtable/extconf.rb +4 -0
- data/split/Dtable/include/dtable.h +35 -0
- data/split/Dtable/lib/Dtable_extras.rb +90 -0
- data/split/Dtable/namespace.h +47 -0
- data/split/Dtable/safe_double.h +104 -0
- data/split/Dtable/symbols.c +92 -0
- data/split/Dtable/symbols.h +52 -0
- data/split/Dvector/defs.h +33 -0
- data/split/Dvector/dvector.c +5486 -0
- data/split/Dvector/dvector_intern.h +142 -0
- data/split/Dvector/extconf.rb +4 -0
- data/split/Dvector/include/dvector.h +61 -0
- data/split/Dvector/lib/Dvector_extras.rb +328 -0
- data/split/Dvector/lib/Numeric_extras.rb +134 -0
- data/split/Dvector/namespace.h +47 -0
- data/split/Dvector/safe_double.h +104 -0
- data/split/Dvector/symbols.c +92 -0
- data/split/Dvector/symbols.h +52 -0
- data/split/Flate/defs.h +33 -0
- data/split/Flate/extconf.rb +19 -0
- data/split/Flate/flate.c +156 -0
- data/split/Flate/flate_intern.h +97 -0
- data/split/Flate/include/flate.h +98 -0
- data/split/Flate/namespace.h +47 -0
- data/split/Flate/safe_double.h +104 -0
- data/split/Flate/symbols.c +92 -0
- data/split/Flate/symbols.h +52 -0
- data/split/Function/defs.h +33 -0
- data/split/Function/dvector.h +61 -0
- data/split/Function/extconf.rb +4 -0
- data/split/Function/function.c +988 -0
- data/split/Function/joint_qsort.c +258 -0
- data/split/Function/lib/Function_extras.rb +44 -0
- data/split/Function/namespace.h +47 -0
- data/split/Function/safe_double.h +104 -0
- data/split/Function/symbols.c +92 -0
- data/split/Function/symbols.h +52 -0
- data/split/Tioga/axes.c +774 -0
- data/split/Tioga/defs.h +33 -0
- data/split/Tioga/dtable.h +35 -0
- data/split/Tioga/dvector.h +61 -0
- data/split/Tioga/extconf.rb +4 -0
- data/split/Tioga/figures.c +672 -0
- data/split/Tioga/figures.h +855 -0
- data/split/Tioga/flate.h +98 -0
- data/split/Tioga/init.c +524 -0
- data/split/Tioga/lib/Arcs_and_Circles.rb +64 -0
- data/split/Tioga/lib/ColorConstants.rb +274 -0
- data/split/Tioga/lib/Colorbars.rb +10 -0
- data/split/Tioga/lib/Colormaps.rb +105 -0
- data/split/Tioga/lib/Coordinate_Conversions.rb +194 -0
- data/split/Tioga/lib/Creating_Paths.rb +94 -0
- data/split/Tioga/lib/Doc.rb +91 -0
- data/split/Tioga/lib/Executive.rb +515 -0
- data/split/Tioga/lib/FigMkr.rb +2224 -0
- data/split/Tioga/lib/FigureConstants.rb +125 -0
- data/split/Tioga/lib/Figures_and_Plots.rb +268 -0
- data/split/Tioga/lib/Images.rb +278 -0
- data/split/Tioga/lib/Legends.rb +190 -0
- data/split/Tioga/lib/MarkerConstants.rb +122 -0
- data/split/Tioga/lib/Markers.rb +129 -0
- data/split/Tioga/lib/Page_Frame_Bounds.rb +567 -0
- data/split/Tioga/lib/Rectangles.rb +94 -0
- data/split/Tioga/lib/Shading.rb +100 -0
- data/split/Tioga/lib/Special_Paths.rb +307 -0
- data/split/Tioga/lib/Strokes.rb +129 -0
- data/split/Tioga/lib/TeX_Text.rb +454 -0
- data/split/Tioga/lib/TexPreamble.rb +358 -0
- data/split/Tioga/lib/Titles_and_Labels.rb +306 -0
- data/split/Tioga/lib/Transparency.rb +89 -0
- data/split/Tioga/lib/Using_Paths.rb +164 -0
- data/split/Tioga/lib/Utils.rb +74 -0
- data/split/Tioga/lib/X_and_Y_Axes.rb +749 -0
- data/split/Tioga/lib/irb_tioga.rb +122 -0
- data/split/Tioga/lib/tioga.rb +1 -0
- data/split/Tioga/lib/tioga_ui.rb +5 -0
- data/split/Tioga/lib/tioga_ui_cmds.rb +793 -0
- data/split/Tioga/makers.c +989 -0
- data/split/Tioga/mk_tioga_sty.rb +53 -0
- data/split/Tioga/namespace.h +47 -0
- data/split/Tioga/pdf_font_dicts.c +18253 -0
- data/split/Tioga/pdfcolor.c +486 -0
- data/split/Tioga/pdfcoords.c +505 -0
- data/split/Tioga/pdffile.c +342 -0
- data/split/Tioga/pdfimage.c +536 -0
- data/split/Tioga/pdfpath.c +914 -0
- data/split/Tioga/pdfs.h +229 -0
- data/split/Tioga/pdftext.c +443 -0
- data/split/Tioga/safe_double.h +104 -0
- data/split/Tioga/symbols.c +92 -0
- data/split/Tioga/symbols.h +52 -0
- data/split/Tioga/texout.c +380 -0
- data/split/defs.h +33 -0
- data/split/extconf.rb +107 -0
- data/split/mkmf2.rb +1612 -0
- data/split/namespace.h +47 -0
- data/split/safe_double.h +104 -0
- data/split/scripts/tioga +4 -0
- data/split/symbols.c +92 -0
- data/split/symbols.h +52 -0
- data/tests/dtable_test.data +6 -0
- data/tests/dvector_read_test.data +1 -0
- data/tests/dvector_test.data +101 -0
- data/tests/tc_Dtable.rb +221 -0
- data/tests/tc_Dvector.rb +791 -0
- data/tests/tc_FMkr.rb +162 -0
- data/tests/tc_Flate.rb +45 -0
- data/tests/tc_Function.rb +111 -0
- data/tests/ts_Tioga.rb +38 -0
- metadata +163 -0
data/tests/tc_FMkr.rb
ADDED
@@ -0,0 +1,162 @@
|
|
1
|
+
# tc_FMkr.rb
|
2
|
+
|
3
|
+
require 'Tioga/tioga'
|
4
|
+
|
5
|
+
require 'test/unit'
|
6
|
+
|
7
|
+
class MyPlots
|
8
|
+
|
9
|
+
include Math
|
10
|
+
include Tioga
|
11
|
+
include FigureConstants
|
12
|
+
|
13
|
+
attr_reader :t
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
def initialize
|
18
|
+
@t = FigureMaker.default
|
19
|
+
t.def_figure("Icon_Test") { icon_test }
|
20
|
+
t.def_enter_page_function { enter_page }
|
21
|
+
end
|
22
|
+
|
23
|
+
def enter_page
|
24
|
+
sz = 8.5
|
25
|
+
t.page_setup(sz*72/2,sz*72/2)
|
26
|
+
t.set_frame_sides(0.15,0.85,0.85,0.15) # left, right, top, bottom in page coords
|
27
|
+
end
|
28
|
+
|
29
|
+
def icon_test
|
30
|
+
tioga_cool = true
|
31
|
+
# set aspect ratio and font scale depending on whether root figure or not
|
32
|
+
unless t.in_subfigure
|
33
|
+
sz = 4.25; scale = 8
|
34
|
+
t.page_setup(sz*72,sz*72)
|
35
|
+
t.set_frame_sides(0.05,0.95,0.91,0.09) # left, right, top, bottom in page coords
|
36
|
+
else
|
37
|
+
scale = 7
|
38
|
+
end
|
39
|
+
t.fill_color = SlateGray
|
40
|
+
t.fill_frame
|
41
|
+
margin = 0.02
|
42
|
+
t.set_subframe('left' => margin, 'right' => margin, 'top' => margin, 'bottom' => margin)
|
43
|
+
t.clip_to_frame
|
44
|
+
saturation = (tioga_cool)? 0.4 : 1
|
45
|
+
starting_L = (tioga_cool)? 0.6 : 0.2
|
46
|
+
ending_L = (tioga_cool)? 0.9 : 1
|
47
|
+
hue = (tioga_cool)? (t.rgb_to_hls(Linen)[0]) : (t.rgb_to_hls(SlateGray)[0])
|
48
|
+
t.axial_shading(
|
49
|
+
'start_point' => [0, 0],
|
50
|
+
'end_point' => [0, 1],
|
51
|
+
'colormap' => t.create_gradient_colormap(
|
52
|
+
'hue' => hue,
|
53
|
+
'saturation' => saturation,
|
54
|
+
'starting_L' => starting_L,
|
55
|
+
'ending_L' => ending_L)
|
56
|
+
)
|
57
|
+
t.stroke_color = Black
|
58
|
+
t.line_width = 8
|
59
|
+
t.stroke_frame
|
60
|
+
angle = 60; size = 3.5; shift = -1.0
|
61
|
+
t.show_text('text' => '\sffamily\textbf{Ruby}', 'side' => BOTTOM, 'pos' => 0.27, 'shift' => shift,
|
62
|
+
'scale' => size, 'angle' => angle)
|
63
|
+
t.show_text('text' => '\sffamily\textbf{PDF}', 'side' => BOTTOM, 'pos' => 0.58, 'shift' => shift,
|
64
|
+
'scale' => size, 'angle' => angle)
|
65
|
+
t.show_text('text' => '\textbf{\TeX}', 'side' => BOTTOM, 'pos' => 0.86, 'shift' => shift,
|
66
|
+
'scale' => size, 'angle' => angle)
|
67
|
+
x = t.bounds_xmin + 0.5 * t.bounds_width
|
68
|
+
y = 0.68
|
69
|
+
t.line_width = 2
|
70
|
+
t.fill_opacity = 0.6
|
71
|
+
t.show_marker('font' => Helvetica, 'string' => 'Tioga', 'scale' => scale, 'point' => [x+0.03,y-0.28],
|
72
|
+
'color' => Grey,
|
73
|
+
'mode' => FILL, 'horizontal_scale' => 0.9, 'vertical_scale' => -0.4, 'italic_angle' => -7)
|
74
|
+
t.show_marker('font' => Times_Roman, 'string' => 'Compare this to the file samples/Icon.pdf',
|
75
|
+
'scale' => 0.7, 'point' => [x,0.95], 'color' => Crimson)
|
76
|
+
t.fill_opacity = 1.0
|
77
|
+
t.show_marker(
|
78
|
+
'font' => Helvetica_BoldOblique, 'string' => 'Tioga',
|
79
|
+
'scale' => scale, 'point' => [x+0.02,y],
|
80
|
+
'mode' => STROKE_AND_CLIP, 'horizontal_scale' => 0.9)
|
81
|
+
if tioga_cool
|
82
|
+
t.axial_shading( # this fills the 'Tioga' string
|
83
|
+
'start_point' => [0, -0.06],
|
84
|
+
'end_point' => [0, 1.4],
|
85
|
+
'colormap' => t.rainbow_colormap)
|
86
|
+
else
|
87
|
+
t.axial_shading( # this fills the 'Tioga' string
|
88
|
+
'start_point' => [0, 0.4],
|
89
|
+
'end_point' => [0, 2.3],
|
90
|
+
'colormap' => t.rainbow_colormap)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
end
|
95
|
+
|
96
|
+
class TestFMkr < Test::Unit::TestCase
|
97
|
+
|
98
|
+
def test_fmkr
|
99
|
+
MyPlots.new.t.make_pdf("Icon")
|
100
|
+
puts " "
|
101
|
+
puts " "
|
102
|
+
puts " "
|
103
|
+
puts ">>> NOTE: please look at tests/Icon_Test.pdf and compare it to samples/Icon.pdf"
|
104
|
+
end
|
105
|
+
|
106
|
+
def do_one_string(tst)
|
107
|
+
compressed = Flate.compress(tst)
|
108
|
+
puts "compressed from #{tst.size} to #{compressed.size}"
|
109
|
+
expanded = Flate.expand(compressed)
|
110
|
+
assert_equal(tst, expanded)
|
111
|
+
end
|
112
|
+
|
113
|
+
# Returns the real file name of a given file.
|
114
|
+
def real_file_name(file_name)
|
115
|
+
dir = File.dirname(__FILE__)
|
116
|
+
if dir.empty?
|
117
|
+
return file_name
|
118
|
+
else
|
119
|
+
return "#{dir}/#{file_name}"
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
def test_flate
|
124
|
+
puts ''
|
125
|
+
do_one_string('')
|
126
|
+
do_one_string('A test string')
|
127
|
+
do_one_string('A longer string might actually become a little smaller when compressed')
|
128
|
+
file = File.open(real_file_name('dvector_test.data'))
|
129
|
+
str = file.read
|
130
|
+
do_one_string(str)
|
131
|
+
end
|
132
|
+
|
133
|
+
# A test function for the new scheme of Hash specifications
|
134
|
+
def test_arguments
|
135
|
+
a = { 'biniou' => 0,
|
136
|
+
'stuff' => '->biniou'.to_sym,
|
137
|
+
}
|
138
|
+
b = MyPlots.new.t.prepare_argument_hash(a, {})
|
139
|
+
assert_equal(b['stuff'], 0)
|
140
|
+
assert_equal(b['biniou'], 0)
|
141
|
+
end
|
142
|
+
|
143
|
+
end
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
|
162
|
+
|
data/tests/tc_Flate.rb
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# tc_Dtable.rb
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
|
5
|
+
class TestDtable < Test::Unit::TestCase
|
6
|
+
|
7
|
+
def make_data(size = 10000)
|
8
|
+
srand # intitialize the random seed...
|
9
|
+
data = ""
|
10
|
+
i = 0
|
11
|
+
while i < size
|
12
|
+
# not efficicent, but this will have to do ;-) !
|
13
|
+
data += [rand(256)].pack("C")
|
14
|
+
i += 1
|
15
|
+
end
|
16
|
+
return data
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_compression_decompression
|
20
|
+
data = make_data
|
21
|
+
data_compressed = Flate.compress(data)
|
22
|
+
data_second = Flate.expand(data_compressed)
|
23
|
+
assert_equal(data_second, data)
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
|
@@ -0,0 +1,111 @@
|
|
1
|
+
require 'Dobjects/Function'
|
2
|
+
require 'test/unit'
|
3
|
+
|
4
|
+
class TestFunction < Test::Unit::TestCase
|
5
|
+
include Dobjects
|
6
|
+
|
7
|
+
def test_sorted
|
8
|
+
x_1 = Dvector[1,2,3]
|
9
|
+
x_2 = Dvector[1,3,2]
|
10
|
+
f_1 = Function.new(x_1, x_2)
|
11
|
+
f_2 = Function.new(x_2, x_1)
|
12
|
+
|
13
|
+
assert(f_1.sorted?)
|
14
|
+
assert(! f_2.sorted?)
|
15
|
+
end
|
16
|
+
|
17
|
+
NUMBER = 20
|
18
|
+
|
19
|
+
def test_joint_sort
|
20
|
+
x_1 = Dvector.new(NUMBER)
|
21
|
+
x_1.collect! { |x|
|
22
|
+
rand
|
23
|
+
}
|
24
|
+
x_2 = x_1.dup
|
25
|
+
Function.joint_sort(x_1,x_2)
|
26
|
+
NUMBER.times do |i|
|
27
|
+
assert_equal(x_1[i],x_2[i])
|
28
|
+
end
|
29
|
+
|
30
|
+
f = Function.new(x_1,x_2)
|
31
|
+
assert(f.sorted?)
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_point
|
35
|
+
x = Dvector[1,3,2]
|
36
|
+
y = Dvector[2,3,4]
|
37
|
+
f = Function.new(x,y)
|
38
|
+
p = f.point(2)
|
39
|
+
assert_equal(p[0],2.0)
|
40
|
+
assert_equal(p[1],4.0)
|
41
|
+
f.sort
|
42
|
+
p = f.point(2)
|
43
|
+
assert_equal(p[0],3.0)
|
44
|
+
assert_equal(p[1],3.0)
|
45
|
+
end
|
46
|
+
|
47
|
+
def test_bounds
|
48
|
+
x_1 = Dvector[1,2,3,4]
|
49
|
+
x_2 = Dvector[1,9,2,0.1]
|
50
|
+
f = Function.new(x_1, x_2)
|
51
|
+
assert_equal(f.bounds, [1,0.1,4,9])
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_strip
|
55
|
+
x = Dvector[1,3,2,4]
|
56
|
+
y = Dvector[2,3,4,5]
|
57
|
+
x[1] = 0.0/0.0
|
58
|
+
y[2] = 0.0/0.0
|
59
|
+
f = Function.new(x,y)
|
60
|
+
assert_equal(f.strip_nan, 2)
|
61
|
+
assert_equal(f.x, Dvector[1,4])
|
62
|
+
assert_equal(f.y, Dvector[2,5])
|
63
|
+
end
|
64
|
+
|
65
|
+
def test_monotonic
|
66
|
+
x = Dvector[1,3,2,4,5,6]
|
67
|
+
y = x.dup
|
68
|
+
f = Function.new(x,y)
|
69
|
+
ary = f.split_monotonic
|
70
|
+
assert_equal(ary.size, 3)
|
71
|
+
x = Dvector[1,3]
|
72
|
+
assert_equal(ary[0].x, x)
|
73
|
+
x = Dvector[3,2]
|
74
|
+
assert_equal(ary[1].x, x)
|
75
|
+
x = Dvector[2,4,5,6]
|
76
|
+
assert_equal(ary[2].x, x)
|
77
|
+
end
|
78
|
+
|
79
|
+
def test_integrate
|
80
|
+
x = Dvector[1,2,4]
|
81
|
+
y = Dvector[0,1,2]
|
82
|
+
f = Function.new(x,y)
|
83
|
+
# integral should be 0.5 + 1.5 * 2
|
84
|
+
assert_equal(f.integrate, 3.5)
|
85
|
+
assert_equal(f.integrate(0,1), 0.5)
|
86
|
+
assert_equal(f.integrate(1,2), 3)
|
87
|
+
|
88
|
+
g = f.primitive
|
89
|
+
assert_equal(f.x, g.x)
|
90
|
+
end
|
91
|
+
|
92
|
+
def test_length
|
93
|
+
x = Dvector[1,2,4]
|
94
|
+
y = Dvector[0,1,2]
|
95
|
+
f = Function.new(x,y)
|
96
|
+
assert_equal(f.size, 3)
|
97
|
+
assert_equal(f.length, 3)
|
98
|
+
end
|
99
|
+
|
100
|
+
def test_distance
|
101
|
+
f = Function.new(Dvector[0],Dvector[0])
|
102
|
+
assert_equal(f.distance(3,4), 5.0)
|
103
|
+
f = Function.new(Dvector[0,1],Dvector[0,1])
|
104
|
+
assert_equal(f.distance(1,1), 0.0)
|
105
|
+
assert_equal(f.distance(0,1), 1.0)
|
106
|
+
assert_equal(f.distance(1,0), 1.0)
|
107
|
+
assert_equal(f.distance(1,0), 1.0)
|
108
|
+
end
|
109
|
+
|
110
|
+
# There is unfortunately no simple way to test the interpolations...
|
111
|
+
end
|
data/tests/ts_Tioga.rb
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# ts_Tioga.rb
|
2
|
+
|
3
|
+
|
4
|
+
require 'Tioga/tioga'
|
5
|
+
|
6
|
+
puts "This is the test suite for Tioga #{Tioga::FigureMaker.version}"
|
7
|
+
# We add this directory to the current search path
|
8
|
+
$: << File.dirname(__FILE__)
|
9
|
+
|
10
|
+
|
11
|
+
require 'test/unit'
|
12
|
+
|
13
|
+
require 'tc_FMkr.rb'
|
14
|
+
|
15
|
+
require 'tc_Dvector.rb'
|
16
|
+
|
17
|
+
require 'tc_Dtable.rb'
|
18
|
+
|
19
|
+
require 'tc_Flate.rb'
|
20
|
+
|
21
|
+
require 'tc_Function.rb'
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
|
metadata
ADDED
@@ -0,0 +1,163 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.0
|
3
|
+
specification_version: 1
|
4
|
+
name: tioga
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: "1.4"
|
7
|
+
date: 2007-01-25 00:00:00 +01:00
|
8
|
+
summary: Tioga - a powerful scientific plotting library
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email:
|
12
|
+
homepage: http://www.kitp.ucsb.edu/~paxton/tioga.html
|
13
|
+
rubyforge_project:
|
14
|
+
description:
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: split/scripts
|
18
|
+
has_rdoc: false
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors: []
|
30
|
+
|
31
|
+
files:
|
32
|
+
- split/symbols.c
|
33
|
+
- split/Tioga/pdfcoords.c
|
34
|
+
- split/Tioga/makers.c
|
35
|
+
- split/Tioga/axes.c
|
36
|
+
- split/Tioga/init.c
|
37
|
+
- split/Tioga/figures.c
|
38
|
+
- split/Tioga/pdfcolor.c
|
39
|
+
- split/Tioga/pdffile.c
|
40
|
+
- split/Tioga/pdf_font_dicts.c
|
41
|
+
- split/Tioga/pdfimage.c
|
42
|
+
- split/Tioga/pdftext.c
|
43
|
+
- split/Tioga/symbols.c
|
44
|
+
- split/Tioga/pdfpath.c
|
45
|
+
- split/Tioga/texout.c
|
46
|
+
- split/Function/symbols.c
|
47
|
+
- split/Function/function.c
|
48
|
+
- split/Function/joint_qsort.c
|
49
|
+
- split/Dvector/dvector.c
|
50
|
+
- split/Dvector/symbols.c
|
51
|
+
- split/Dtable/symbols.c
|
52
|
+
- split/Dtable/dtable.c
|
53
|
+
- split/Flate/symbols.c
|
54
|
+
- split/Flate/flate.c
|
55
|
+
- split/namespace.h
|
56
|
+
- split/defs.h
|
57
|
+
- split/symbols.h
|
58
|
+
- split/safe_double.h
|
59
|
+
- split/Tioga/pdfs.h
|
60
|
+
- split/Tioga/figures.h
|
61
|
+
- split/Tioga/symbols.h
|
62
|
+
- split/Tioga/defs.h
|
63
|
+
- split/Tioga/safe_double.h
|
64
|
+
- split/Tioga/namespace.h
|
65
|
+
- split/Tioga/dvector.h
|
66
|
+
- split/Tioga/dtable.h
|
67
|
+
- split/Tioga/flate.h
|
68
|
+
- split/Function/defs.h
|
69
|
+
- split/Function/symbols.h
|
70
|
+
- split/Function/safe_double.h
|
71
|
+
- split/Function/namespace.h
|
72
|
+
- split/Function/dvector.h
|
73
|
+
- split/Dvector/dvector_intern.h
|
74
|
+
- split/Dvector/symbols.h
|
75
|
+
- split/Dvector/defs.h
|
76
|
+
- split/Dvector/safe_double.h
|
77
|
+
- split/Dvector/namespace.h
|
78
|
+
- split/Dvector/include/dvector.h
|
79
|
+
- split/Dtable/dtable_intern.h
|
80
|
+
- split/Dtable/symbols.h
|
81
|
+
- split/Dtable/defs.h
|
82
|
+
- split/Dtable/safe_double.h
|
83
|
+
- split/Dtable/namespace.h
|
84
|
+
- split/Dtable/dvector.h
|
85
|
+
- split/Dtable/include/dtable.h
|
86
|
+
- split/Flate/flate_intern.h
|
87
|
+
- split/Flate/symbols.h
|
88
|
+
- split/Flate/defs.h
|
89
|
+
- split/Flate/safe_double.h
|
90
|
+
- split/Flate/namespace.h
|
91
|
+
- split/Flate/include/flate.h
|
92
|
+
- split/extconf.rb
|
93
|
+
- split/mkmf2.rb
|
94
|
+
- split/Tioga/mk_tioga_sty.rb
|
95
|
+
- split/Tioga/extconf.rb
|
96
|
+
- split/Tioga/lib/Rectangles.rb
|
97
|
+
- split/Tioga/lib/Colorbars.rb
|
98
|
+
- split/Tioga/lib/Shading.rb
|
99
|
+
- split/Tioga/lib/Arcs_and_Circles.rb
|
100
|
+
- split/Tioga/lib/MarkerConstants.rb
|
101
|
+
- split/Tioga/lib/FigureConstants.rb
|
102
|
+
- split/Tioga/lib/FigMkr.rb
|
103
|
+
- split/Tioga/lib/Legends.rb
|
104
|
+
- split/Tioga/lib/Strokes.rb
|
105
|
+
- split/Tioga/lib/Coordinate_Conversions.rb
|
106
|
+
- split/Tioga/lib/Special_Paths.rb
|
107
|
+
- split/Tioga/lib/Creating_Paths.rb
|
108
|
+
- split/Tioga/lib/Using_Paths.rb
|
109
|
+
- split/Tioga/lib/X_and_Y_Axes.rb
|
110
|
+
- split/Tioga/lib/irb_tioga.rb
|
111
|
+
- split/Tioga/lib/Colormaps.rb
|
112
|
+
- split/Tioga/lib/tioga_ui.rb
|
113
|
+
- split/Tioga/lib/Utils.rb
|
114
|
+
- split/Tioga/lib/Figures_and_Plots.rb
|
115
|
+
- split/Tioga/lib/Page_Frame_Bounds.rb
|
116
|
+
- split/Tioga/lib/Executive.rb
|
117
|
+
- split/Tioga/lib/TeX_Text.rb
|
118
|
+
- split/Tioga/lib/tioga.rb
|
119
|
+
- split/Tioga/lib/Markers.rb
|
120
|
+
- split/Tioga/lib/tioga_ui_cmds.rb
|
121
|
+
- split/Tioga/lib/Images.rb
|
122
|
+
- split/Tioga/lib/Doc.rb
|
123
|
+
- split/Tioga/lib/TexPreamble.rb
|
124
|
+
- split/Tioga/lib/Titles_and_Labels.rb
|
125
|
+
- split/Tioga/lib/Transparency.rb
|
126
|
+
- split/Tioga/lib/ColorConstants.rb
|
127
|
+
- split/Function/extconf.rb
|
128
|
+
- split/Function/lib/Function_extras.rb
|
129
|
+
- split/Dvector/extconf.rb
|
130
|
+
- split/Dvector/lib/Numeric_extras.rb
|
131
|
+
- split/Dvector/lib/Dvector_extras.rb
|
132
|
+
- split/Dtable/extconf.rb
|
133
|
+
- split/Dtable/lib/Dtable_extras.rb
|
134
|
+
- split/Flate/extconf.rb
|
135
|
+
- tests/dvector_test.data
|
136
|
+
- tests/dtable_test.data
|
137
|
+
- tests/tc_Dtable.rb
|
138
|
+
- tests/tc_Flate.rb
|
139
|
+
- tests/tc_FMkr.rb
|
140
|
+
- tests/ts_Tioga.rb
|
141
|
+
- tests/dvector_read_test.data
|
142
|
+
- tests/tc_Function.rb
|
143
|
+
- tests/tc_Dvector.rb
|
144
|
+
- Tioga_README
|
145
|
+
- lgpl.txt
|
146
|
+
test_files:
|
147
|
+
- tests/ts_Tioga.rb
|
148
|
+
rdoc_options: []
|
149
|
+
|
150
|
+
extra_rdoc_files: []
|
151
|
+
|
152
|
+
executables:
|
153
|
+
- tioga
|
154
|
+
extensions:
|
155
|
+
- split/Flate/extconf.rb
|
156
|
+
- split/Tioga/extconf.rb
|
157
|
+
- split/Dvector/extconf.rb
|
158
|
+
- split/Dtable/extconf.rb
|
159
|
+
- split/Function/extconf.rb
|
160
|
+
requirements: []
|
161
|
+
|
162
|
+
dependencies: []
|
163
|
+
|