tioga 1.9 → 1.11
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.
- data/Tioga_README +186 -142
- data/split/Dtable/dtable.c +68 -0
- data/split/Dtable/dvector.h +13 -5
- data/split/Dvector/dvector.c +179 -10
- data/split/Dvector/dvector_intern.h +12 -0
- data/split/Dvector/include/dvector.h +13 -5
- data/split/Dvector/lib/Dvector_extras.rb +19 -0
- data/split/Function/dvector.h +13 -5
- data/split/Tioga/axes.c +100 -16
- data/split/Tioga/dvector.h +13 -5
- data/split/Tioga/figures.c +2 -0
- data/split/Tioga/figures.h +18 -0
- data/split/Tioga/init.c +9 -0
- data/split/Tioga/lib/FigMkr.rb +55 -41
- data/split/Tioga/pdfcolor.c +61 -0
- data/split/Tioga/wrappers.c +11 -0
- data/split/Tioga/wrappers.h +5 -0
- data/tests/Icon_Test.pdf +0 -0
- metadata +32 -28
data/split/Tioga/dvector.h
CHANGED
@@ -55,15 +55,23 @@ DECLARE_SYMBOL(void, Dvector_Push_Double, (VALUE ary, double val));
|
|
55
55
|
|
56
56
|
|
57
57
|
/* functions for interpolation */
|
58
|
-
DECLARE_SYMBOL(double, c_dvector_spline_interpolate,
|
59
|
-
(double x, int n_pts_data, double *Xs, double *Ys,
|
60
|
-
double *Bs, double *Cs, double *Ds));
|
61
|
-
DECLARE_SYMBOL(double, c_dvector_linear_interpolate,
|
62
|
-
(int num_pts, double *xs, double *ys, double x));
|
63
58
|
DECLARE_SYMBOL(void, c_dvector_create_spline_interpolant,
|
64
59
|
(int n_pts_data, double *Xs, double *Ys,
|
65
60
|
bool start_clamped, double start_slope,
|
66
61
|
bool end_clamped, double end_slope,
|
67
62
|
double *As, double *Bs, double *Cs));
|
63
|
+
DECLARE_SYMBOL(double, c_dvector_spline_interpolate,
|
64
|
+
(double x, int n_pts_data, double *Xs, double *Ys,
|
65
|
+
double *Bs, double *Cs, double *Ds));
|
66
|
+
|
67
|
+
DECLARE_SYMBOL(void, c_dvector_create_pm_cubic_interpolant,
|
68
|
+
(int n_pts_data, double *Xs, double *Ys,
|
69
|
+
double *As, double *Bs, double *Cs));
|
70
|
+
DECLARE_SYMBOL(double, c_dvector_pm_cubic_interpolate,
|
71
|
+
(double x, int n_pts_data, double *Xs, double *Ys,
|
72
|
+
double *Bs, double *Cs, double *Ds));
|
73
|
+
|
74
|
+
DECLARE_SYMBOL(double, c_dvector_linear_interpolate,
|
75
|
+
(int num_pts, double *xs, double *ys, double x));
|
68
76
|
#endif /* __Dvector_H__ */
|
69
77
|
|
data/split/Tioga/figures.c
CHANGED
@@ -569,6 +569,7 @@ void Init_FigureMaker(void) {
|
|
569
569
|
attr_accessors(xaxis_type)
|
570
570
|
attr_accessors(xaxis_line_width)
|
571
571
|
attr_accessors(xaxis_stroke_color)
|
572
|
+
attr_accessors(xaxis_labels_color)
|
572
573
|
attr_accessors(xaxis_major_tick_width)
|
573
574
|
attr_accessors(xaxis_minor_tick_width)
|
574
575
|
attr_accessors(xaxis_major_tick_length)
|
@@ -600,6 +601,7 @@ void Init_FigureMaker(void) {
|
|
600
601
|
attr_accessors(yaxis_type)
|
601
602
|
attr_accessors(yaxis_line_width)
|
602
603
|
attr_accessors(yaxis_stroke_color)
|
604
|
+
attr_accessors(yaxis_labels_color)
|
603
605
|
attr_accessors(yaxis_major_tick_width)
|
604
606
|
attr_accessors(yaxis_minor_tick_width)
|
605
607
|
attr_accessors(yaxis_major_tick_length)
|
data/split/Tioga/figures.h
CHANGED
@@ -215,6 +215,11 @@ typedef struct {
|
|
215
215
|
double xaxis_stroke_color_R; // for axis line and tick marks
|
216
216
|
double xaxis_stroke_color_G;
|
217
217
|
double xaxis_stroke_color_B;
|
218
|
+
|
219
|
+
/* For tick labels */
|
220
|
+
double xaxis_labels_color_R;
|
221
|
+
double xaxis_labels_color_G;
|
222
|
+
double xaxis_labels_color_B;
|
218
223
|
// tick marks
|
219
224
|
double xaxis_major_tick_width; // same units as line_width
|
220
225
|
double xaxis_minor_tick_width; // same units as line_width
|
@@ -253,6 +258,11 @@ typedef struct {
|
|
253
258
|
double yaxis_stroke_color_R; // for axis line and tick marks
|
254
259
|
double yaxis_stroke_color_G;
|
255
260
|
double yaxis_stroke_color_B;
|
261
|
+
|
262
|
+
/* For tick labels */
|
263
|
+
double yaxis_labels_color_R;
|
264
|
+
double yaxis_labels_color_G;
|
265
|
+
double yaxis_labels_color_B;
|
256
266
|
// tick marks
|
257
267
|
double yaxis_major_tick_width; // same units as line_width
|
258
268
|
double yaxis_minor_tick_width; // same units as line_width
|
@@ -457,6 +467,14 @@ extern void c_xaxis_stroke_color_set(OBJ_PTR fmkr, FM *p, OBJ_PTR valc_hls_to_rg
|
|
457
467
|
extern OBJ_PTR c_xaxis_stroke_color_get(OBJ_PTR fmkr, FM *pc_hls_to_rgb, int *ierr); // value is array of [r, g, b] intensities from 0 to 1
|
458
468
|
extern void c_yaxis_stroke_color_set(OBJ_PTR fmkr, FM *p, OBJ_PTR valc_hls_to_rgb, int *ierr);
|
459
469
|
extern OBJ_PTR c_yaxis_stroke_color_get(OBJ_PTR fmkr, FM *pc_hls_to_rgb, int *ierr); // value is array of [r, g, b] intensities from 0 to 1
|
470
|
+
|
471
|
+
/* Same but for label colors: */
|
472
|
+
extern void c_xaxis_labels_color_set(OBJ_PTR fmkr, FM *p, OBJ_PTR valc_hls_to_rgb, int *ierr);
|
473
|
+
extern OBJ_PTR c_xaxis_labels_color_get(OBJ_PTR fmkr, FM *pc_hls_to_rgb, int *ierr); // value is array of [r, g, b] intensities from 0 to 1
|
474
|
+
extern void c_yaxis_labels_color_set(OBJ_PTR fmkr, FM *p, OBJ_PTR valc_hls_to_rgb, int *ierr);
|
475
|
+
extern OBJ_PTR c_yaxis_labels_color_get(OBJ_PTR fmkr, FM *pc_hls_to_rgb, int *ierr); // value is array of [r, g, b] intensities from 0 to 1
|
476
|
+
|
477
|
+
|
460
478
|
extern void c_string_hls_to_rgb_bang(OBJ_PTR fmkr, FM *p, unsigned char* hls_str, long len, int *ierr);
|
461
479
|
extern void c_string_rgb_to_hls_bang(OBJ_PTR fmkr, FM *p, unsigned char* rgb_str, long len, int *ierr);
|
462
480
|
|
data/split/Tioga/init.c
CHANGED
@@ -508,9 +508,14 @@ void c_private_init_fm_data(OBJ_PTR fmkr, FM *p, int *ierr) {
|
|
508
508
|
p->xaxis_loc = BOTTOM;
|
509
509
|
// line
|
510
510
|
p->xaxis_line_width = 1.0; // for axis line
|
511
|
+
|
511
512
|
p->xaxis_stroke_color_R = 0.0; // for axis line and tick marks
|
512
513
|
p->xaxis_stroke_color_G = 0.0;
|
513
514
|
p->xaxis_stroke_color_B = 0.0;
|
515
|
+
|
516
|
+
p->xaxis_labels_color_R = 0.0; // for axis line and tick marks
|
517
|
+
p->xaxis_labels_color_G = 0.0;
|
518
|
+
p->xaxis_labels_color_B = 0.0;
|
514
519
|
// tick marks
|
515
520
|
p->xaxis_major_tick_width = 0.9; // same units as line_width
|
516
521
|
p->xaxis_minor_tick_width = 0.7; // same units as line_width
|
@@ -547,6 +552,10 @@ void c_private_init_fm_data(OBJ_PTR fmkr, FM *p, int *ierr) {
|
|
547
552
|
p->yaxis_stroke_color_R = 0.0; // for axis line and tick marks
|
548
553
|
p->yaxis_stroke_color_G = 0.0;
|
549
554
|
p->yaxis_stroke_color_B = 0.0;
|
555
|
+
|
556
|
+
p->yaxis_labels_color_R = 0.0; // for axis line and tick marks
|
557
|
+
p->yaxis_labels_color_G = 0.0;
|
558
|
+
p->yaxis_labels_color_B = 0.0;
|
550
559
|
// tick marks
|
551
560
|
p->yaxis_major_tick_width = 0.9; // same units as line_width
|
552
561
|
p->yaxis_minor_tick_width = 0.7; // same units as line_width
|
data/split/Tioga/lib/FigMkr.rb
CHANGED
@@ -34,7 +34,7 @@ class FigureMaker
|
|
34
34
|
|
35
35
|
# This URL will contain tioga-(...) when it is exported from the
|
36
36
|
# SVN repository. This is where we'll look for version information.
|
37
|
-
SVN_URL = '$HeadURL: svn+ssh://rubyforge.org/var/svn/tioga/
|
37
|
+
SVN_URL = '$HeadURL: svn+ssh://rubyforge.org/var/svn/tioga/tags/tioga/Tioga%201.11/split/Tioga/lib/FigMkr.rb $'
|
38
38
|
|
39
39
|
TIOGA_VERSION = if SVN_URL =~ /tags\/tioga\/Tioga%20([^\/]+)/
|
40
40
|
$1
|
@@ -700,44 +700,59 @@ class FigureMaker
|
|
700
700
|
legend_background_function.call([ 0, xright, ytop, ybot ])
|
701
701
|
end
|
702
702
|
legend_index = 0
|
703
|
-
@legend_info
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
703
|
+
if @legend_info != nil
|
704
|
+
@legend_info.each do |dict|
|
705
|
+
text = dict['text']
|
706
|
+
if text != nil
|
707
|
+
# We prepare a dictionnary:
|
708
|
+
dct = { 'text' => text,
|
709
|
+
'x' => x, 'y' => y, 'scale' => self.legend_scale,
|
710
|
+
'justification' => self.legend_justification,
|
711
|
+
'alignment' => self.legend_alignment }
|
712
|
+
if @measure_legends
|
713
|
+
dct['measure'] = "legend-#{legend_index}"
|
714
|
+
legend_index += 1
|
715
|
+
end
|
716
|
+
show_text(dct)
|
714
717
|
end
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
718
|
+
line_width = dict['line_width']
|
719
|
+
line_type = dict['line_type']
|
720
|
+
unless (line_width < 0) || ((line_type.kind_of?String) && (line_type.casecmp('none') == 0))
|
721
|
+
|
722
|
+
save_line_color = self.line_color
|
723
|
+
save_line_width = self.line_width
|
724
|
+
save_line_cap = self.line_cap
|
725
|
+
save_line_type = self.line_type
|
726
|
+
|
727
|
+
self.line_color = dict['line_color']
|
728
|
+
self.line_width = dict['line_width']
|
729
|
+
self.line_cap = dict['line_cap']
|
730
|
+
self.line_type = line_type
|
731
|
+
|
732
|
+
stroke_line(line_x0, y+line_dy, line_x1, y+line_dy)
|
733
|
+
|
734
|
+
self.line_color = save_line_color
|
735
|
+
self.line_width = save_line_width
|
736
|
+
self.line_cap = save_line_cap
|
737
|
+
self.line_type = save_line_type
|
738
|
+
|
739
|
+
end
|
740
|
+
# place any marker right in the middle of the line
|
741
|
+
if dict['marker_dict'] != nil
|
742
|
+
marker_dict = dict['marker_dict']
|
743
|
+
marker_dict['x'] = 0.5*(line_x0 + line_x1)
|
744
|
+
marker_dict['y'] = y+line_dy
|
745
|
+
show_marker(marker_dict)
|
746
|
+
elsif dict['marker']
|
747
|
+
show_marker( 'x' => 0.5*(line_x0 + line_x1),
|
748
|
+
'y' => (y+line_dy),
|
749
|
+
'marker' => dict['marker'],
|
750
|
+
'color' => dict['marker_color'],
|
751
|
+
'scale' => dict['marker_scale'])
|
752
|
+
end
|
753
|
+
dy = dict['dy']; dy = 1 if dy == nil
|
754
|
+
y -= line_ht_y * dy
|
738
755
|
end
|
739
|
-
dy = dict['dy']; dy = 1 if dy == nil
|
740
|
-
y -= line_ht_y * dy
|
741
756
|
end
|
742
757
|
end
|
743
758
|
|
@@ -1025,7 +1040,6 @@ class FigureMaker
|
|
1025
1040
|
|
1026
1041
|
def context(&cmd)
|
1027
1042
|
trace_cmd_no_arg(@enter_context_function, @exit_context_function) {
|
1028
|
-
|
1029
1043
|
save_title = self.title
|
1030
1044
|
save_xlabel = self.xlabel
|
1031
1045
|
save_ylabel = self.ylabel
|
@@ -1053,8 +1067,7 @@ class FigureMaker
|
|
1053
1067
|
self.yaxis_locations_for_minor_ticks = save_yaxis_locations_for_minor_ticks
|
1054
1068
|
self.yaxis_tick_labels = save_yaxis_tick_labels
|
1055
1069
|
@fm_data.replace(save_fm_data)
|
1056
|
-
end
|
1057
|
-
|
1070
|
+
end
|
1058
1071
|
}
|
1059
1072
|
end
|
1060
1073
|
|
@@ -1793,7 +1806,8 @@ class FigureMaker
|
|
1793
1806
|
fill_color = get_if_given_else_use_default_dict(dict, 'fill_color', @marker_defaults)
|
1794
1807
|
stroke_color = get_if_given_else_use_default_dict(dict, 'stroke_color', @marker_defaults)
|
1795
1808
|
else
|
1796
|
-
|
1809
|
+
stroke_color = dict['stroke_color'] || color
|
1810
|
+
fill_color = dict['fill_color'] || color
|
1797
1811
|
end
|
1798
1812
|
font = dict['font']
|
1799
1813
|
mode = alt_names(dict, 'mode', 'rendering_mode')
|
data/split/Tioga/pdfcolor.c
CHANGED
@@ -757,6 +757,7 @@ c_xaxis_stroke_color_set(OBJ_PTR fmkr, FM *p, OBJ_PTR val, int *ierr)
|
|
757
757
|
}
|
758
758
|
|
759
759
|
|
760
|
+
|
760
761
|
OBJ_PTR
|
761
762
|
c_xaxis_stroke_color_get(OBJ_PTR fmkr, FM *p, int *ierr)
|
762
763
|
{
|
@@ -802,6 +803,66 @@ c_yaxis_stroke_color_get(OBJ_PTR fmkr, FM *p, int *ierr)
|
|
802
803
|
return result;
|
803
804
|
}
|
804
805
|
|
806
|
+
/* Accessors for tick label colors */
|
807
|
+
|
808
|
+
void
|
809
|
+
c_xaxis_labels_color_set(OBJ_PTR fmkr, FM *p, OBJ_PTR val, int *ierr)
|
810
|
+
{
|
811
|
+
double r, g, b;
|
812
|
+
Unpack_RGB(val, &r, &g, &b, ierr);
|
813
|
+
if (*ierr != 0) return;
|
814
|
+
p->xaxis_labels_color_R = r;
|
815
|
+
p->xaxis_labels_color_G = g;
|
816
|
+
p->xaxis_labels_color_B = b;
|
817
|
+
}
|
818
|
+
|
819
|
+
|
820
|
+
|
821
|
+
OBJ_PTR
|
822
|
+
c_xaxis_labels_color_get(OBJ_PTR fmkr, FM *p, int *ierr)
|
823
|
+
{
|
824
|
+
// value is array of [r, g, b] intensities from 0 to 1
|
825
|
+
// r g b RG
|
826
|
+
double r, g, b;
|
827
|
+
r = p->xaxis_labels_color_R;
|
828
|
+
g = p->xaxis_labels_color_G;
|
829
|
+
b = p->xaxis_labels_color_B;
|
830
|
+
OBJ_PTR result = Array_New(3);
|
831
|
+
Array_Store(result, 0, Float_New(r), ierr);
|
832
|
+
Array_Store(result, 1, Float_New(g), ierr);
|
833
|
+
Array_Store(result, 2, Float_New(b), ierr);
|
834
|
+
return result;
|
835
|
+
}
|
836
|
+
|
837
|
+
|
838
|
+
void
|
839
|
+
c_yaxis_labels_color_set(OBJ_PTR fmkr, FM *p, OBJ_PTR val, int *ierr)
|
840
|
+
{
|
841
|
+
double r, g, b;
|
842
|
+
Unpack_RGB(val, &r, &g, &b, ierr);
|
843
|
+
if (*ierr != 0) return;
|
844
|
+
p->yaxis_labels_color_R = r;
|
845
|
+
p->yaxis_labels_color_G = g;
|
846
|
+
p->yaxis_labels_color_B = b;
|
847
|
+
}
|
848
|
+
|
849
|
+
|
850
|
+
OBJ_PTR
|
851
|
+
c_yaxis_labels_color_get(OBJ_PTR fmkr, FM *p, int *ierr)
|
852
|
+
{
|
853
|
+
// value is array of [r, g, b] intensities from 0 to 1
|
854
|
+
// r g b RG
|
855
|
+
double r, g, b;
|
856
|
+
r = p->yaxis_labels_color_R;
|
857
|
+
g = p->yaxis_labels_color_G;
|
858
|
+
b = p->yaxis_labels_color_B;
|
859
|
+
OBJ_PTR result = Array_New(3);
|
860
|
+
Array_Store(result, 0, Float_New(r), ierr);
|
861
|
+
Array_Store(result, 1, Float_New(g), ierr);
|
862
|
+
Array_Store(result, 2, Float_New(b), ierr);
|
863
|
+
return result;
|
864
|
+
}
|
865
|
+
|
805
866
|
|
806
867
|
|
807
868
|
void
|
data/split/Tioga/wrappers.c
CHANGED
@@ -135,6 +135,7 @@ OBJ_PTR FM_ylabel_color_set(OBJ_PTR fmkr, OBJ_PTR val) { int ierr=0;
|
|
135
135
|
c_ylabel_color_set(fmkr, Get_FM(fmkr, &ierr), val, &ierr); RETURN_NIL; }
|
136
136
|
OBJ_PTR FM_ylabel_color_get(OBJ_PTR fmkr) { int ierr=0;
|
137
137
|
return c_ylabel_color_get(fmkr, Get_FM(fmkr, &ierr), &ierr); }
|
138
|
+
|
138
139
|
OBJ_PTR FM_xaxis_stroke_color_set(OBJ_PTR fmkr, OBJ_PTR val) { int ierr=0;
|
139
140
|
c_xaxis_stroke_color_set(fmkr, Get_FM(fmkr, &ierr), val, &ierr); RETURN_NIL; }
|
140
141
|
OBJ_PTR FM_xaxis_stroke_color_get(OBJ_PTR fmkr) { int ierr=0;
|
@@ -143,6 +144,16 @@ OBJ_PTR FM_yaxis_stroke_color_set(OBJ_PTR fmkr, OBJ_PTR val) { int ierr=0;
|
|
143
144
|
c_yaxis_stroke_color_set(fmkr, Get_FM(fmkr, &ierr), val, &ierr); RETURN_NIL; }
|
144
145
|
OBJ_PTR FM_yaxis_stroke_color_get(OBJ_PTR fmkr) { int ierr=0;
|
145
146
|
return c_yaxis_stroke_color_get(fmkr, Get_FM(fmkr, &ierr), &ierr); }
|
147
|
+
|
148
|
+
OBJ_PTR FM_xaxis_labels_color_set(OBJ_PTR fmkr, OBJ_PTR val) { int ierr=0;
|
149
|
+
c_xaxis_labels_color_set(fmkr, Get_FM(fmkr, &ierr), val, &ierr); RETURN_NIL; }
|
150
|
+
OBJ_PTR FM_xaxis_labels_color_get(OBJ_PTR fmkr) { int ierr=0;
|
151
|
+
return c_xaxis_labels_color_get(fmkr, Get_FM(fmkr, &ierr), &ierr); }
|
152
|
+
OBJ_PTR FM_yaxis_labels_color_set(OBJ_PTR fmkr, OBJ_PTR val) { int ierr=0;
|
153
|
+
c_yaxis_labels_color_set(fmkr, Get_FM(fmkr, &ierr), val, &ierr); RETURN_NIL; }
|
154
|
+
OBJ_PTR FM_yaxis_labels_color_get(OBJ_PTR fmkr) { int ierr=0;
|
155
|
+
return c_yaxis_labels_color_get(fmkr, Get_FM(fmkr, &ierr), &ierr); }
|
156
|
+
|
146
157
|
OBJ_PTR FM_string_hls_to_rgb_bang(OBJ_PTR fmkr, OBJ_PTR str) { int ierr=0;
|
147
158
|
c_string_hls_to_rgb_bang(fmkr, Get_FM(fmkr, &ierr),
|
148
159
|
(unsigned char *)String_Ptr(str, &ierr), String_Len(str, &ierr), &ierr);
|
data/split/Tioga/wrappers.h
CHANGED
@@ -92,6 +92,11 @@ extern OBJ_PTR FM_xaxis_stroke_color_get(OBJ_PTR fmkr);
|
|
92
92
|
extern OBJ_PTR FM_xaxis_stroke_color_set(OBJ_PTR fmkr, OBJ_PTR val);
|
93
93
|
extern OBJ_PTR FM_yaxis_stroke_color_get(OBJ_PTR fmkr);
|
94
94
|
extern OBJ_PTR FM_yaxis_stroke_color_set(OBJ_PTR fmkr, OBJ_PTR val);
|
95
|
+
extern OBJ_PTR FM_xaxis_labels_color_get(OBJ_PTR fmkr);
|
96
|
+
extern OBJ_PTR FM_xaxis_labels_color_set(OBJ_PTR fmkr, OBJ_PTR val);
|
97
|
+
extern OBJ_PTR FM_yaxis_labels_color_get(OBJ_PTR fmkr);
|
98
|
+
extern OBJ_PTR FM_yaxis_labels_color_set(OBJ_PTR fmkr, OBJ_PTR val);
|
99
|
+
|
95
100
|
extern OBJ_PTR FM_string_hls_to_rgb_bang(OBJ_PTR fmkr, OBJ_PTR str);
|
96
101
|
extern OBJ_PTR FM_string_rgb_to_hls_bang(OBJ_PTR fmkr, OBJ_PTR str);
|
97
102
|
|
data/tests/Icon_Test.pdf
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,15 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tioga
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: "1.
|
4
|
+
version: "1.11"
|
5
5
|
platform: ruby
|
6
|
-
authors:
|
7
|
-
|
6
|
+
authors:
|
7
|
+
- Bill Paxton
|
8
|
+
- Vincent Fourmond
|
9
|
+
- Taro Sato
|
10
|
+
- Jean-Julien Fleck
|
8
11
|
autorequire:
|
9
12
|
bindir: split/scripts
|
10
13
|
cert_chain: []
|
11
14
|
|
12
|
-
date:
|
15
|
+
date: 2009-07-18 00:00:00 +02:00
|
13
16
|
default_executable:
|
14
17
|
dependencies: []
|
15
18
|
|
@@ -26,26 +29,28 @@ extensions:
|
|
26
29
|
extra_rdoc_files: []
|
27
30
|
|
28
31
|
files:
|
32
|
+
- split/Tioga/wrappers.c
|
29
33
|
- split/Tioga/init.c
|
30
34
|
- split/Tioga/figures.c
|
31
|
-
- split/Tioga/
|
35
|
+
- split/Tioga/generic.c
|
36
|
+
- split/Tioga/pdftext.c
|
32
37
|
- split/Tioga/axes.c
|
38
|
+
- split/Tioga/makers.c
|
39
|
+
- split/Tioga/pdfcoords.c
|
33
40
|
- split/Tioga/pdf_font_dicts.c
|
41
|
+
- split/Tioga/pdfpath.c
|
34
42
|
- split/Tioga/pdfcolor.c
|
35
|
-
- split/Tioga/
|
43
|
+
- split/Tioga/texout.c
|
36
44
|
- split/Tioga/pdffile.c
|
37
45
|
- split/Tioga/pdfimage.c
|
38
|
-
- split/Tioga/pdfpath.c
|
39
|
-
- split/Tioga/pdftext.c
|
40
|
-
- split/Tioga/texout.c
|
41
|
-
- split/Tioga/wrappers.c
|
42
|
-
- split/Tioga/generic.c
|
43
46
|
- split/Function/function.c
|
44
47
|
- split/Function/joint_qsort.c
|
45
48
|
- split/Dvector/dvector.c
|
46
49
|
- split/Dtable/dtable.c
|
47
50
|
- split/Flate/flate.c
|
51
|
+
- split/Tioga/generic.h
|
48
52
|
- split/Tioga/pdfs.h
|
53
|
+
- split/Tioga/wrappers.h
|
49
54
|
- split/Tioga/figures.h
|
50
55
|
- split/Tioga/symbols.h
|
51
56
|
- split/Tioga/defs.h
|
@@ -54,15 +59,13 @@ files:
|
|
54
59
|
- split/Tioga/dvector.h
|
55
60
|
- split/Tioga/dtable.h
|
56
61
|
- split/Tioga/flate.h
|
57
|
-
- split/Tioga/generic.h
|
58
|
-
- split/Tioga/wrappers.h
|
59
62
|
- split/Function/symbols.h
|
60
63
|
- split/Function/defs.h
|
61
64
|
- split/Function/safe_double.h
|
62
65
|
- split/Function/namespace.h
|
63
66
|
- split/Function/dvector.h
|
64
|
-
- split/Dvector/dvector_intern.h
|
65
67
|
- split/Dvector/symbols.h
|
68
|
+
- split/Dvector/dvector_intern.h
|
66
69
|
- split/Dvector/defs.h
|
67
70
|
- split/Dvector/safe_double.h
|
68
71
|
- split/Dvector/namespace.h
|
@@ -80,19 +83,22 @@ files:
|
|
80
83
|
- split/Dvector/include/dvector.h
|
81
84
|
- split/Dtable/include/dtable.h
|
82
85
|
- split/Flate/include/flate.h
|
86
|
+
- split/Tioga/lib/maker.rb
|
83
87
|
- split/Tioga/lib/Shading.rb
|
84
|
-
- split/Tioga/lib/MarkerConstants.rb
|
85
|
-
- split/Tioga/lib/FigureConstants.rb
|
86
88
|
- split/Tioga/lib/Arcs_and_Circles.rb
|
87
|
-
- split/Tioga/lib/
|
88
|
-
- split/Tioga/lib/
|
89
|
+
- split/Tioga/lib/FigureConstants.rb
|
90
|
+
- split/Tioga/lib/MarkerConstants.rb
|
89
91
|
- split/Tioga/lib/Special_Paths.rb
|
92
|
+
- split/Tioga/lib/Coordinate_Conversions.rb
|
93
|
+
- split/Tioga/lib/FigMkr.rb
|
90
94
|
- split/Tioga/lib/Legends.rb
|
91
95
|
- split/Tioga/lib/Using_Paths.rb
|
92
96
|
- split/Tioga/lib/Colorbars.rb
|
93
97
|
- split/Tioga/lib/Rectangles.rb
|
94
98
|
- split/Tioga/lib/Strokes.rb
|
95
99
|
- split/Tioga/lib/Creating_Paths.rb
|
100
|
+
- split/Tioga/lib/irb_tioga.rb
|
101
|
+
- split/Tioga/lib/tioga_ui_cmds.rb
|
96
102
|
- split/Tioga/lib/Colormaps.rb
|
97
103
|
- split/Tioga/lib/Page_Frame_Bounds.rb
|
98
104
|
- split/Tioga/lib/Utils.rb
|
@@ -104,16 +110,13 @@ files:
|
|
104
110
|
- split/Tioga/lib/TeX_Text.rb
|
105
111
|
- split/Tioga/lib/Images.rb
|
106
112
|
- split/Tioga/lib/Doc.rb
|
113
|
+
- split/Tioga/lib/TexPreamble.rb
|
107
114
|
- split/Tioga/lib/Figures_and_Plots.rb
|
108
115
|
- split/Tioga/lib/Titles_and_Labels.rb
|
109
116
|
- split/Tioga/lib/Transparency.rb
|
110
117
|
- split/Tioga/lib/ColorConstants.rb
|
111
|
-
- split/Tioga/lib/irb_tioga.rb
|
112
|
-
- split/Tioga/lib/tioga_ui_cmds.rb
|
113
|
-
- split/Tioga/lib/TexPreamble.rb
|
114
|
-
- split/Tioga/lib/maker.rb
|
115
|
-
- split/Tioga/mk_tioga_sty.rb
|
116
118
|
- split/Tioga/extconf.rb
|
119
|
+
- split/Tioga/mk_tioga_sty.rb
|
117
120
|
- split/Function/lib/Function_extras.rb
|
118
121
|
- split/Function/extconf.rb
|
119
122
|
- split/Dvector/lib/Numeric_extras.rb
|
@@ -129,6 +132,7 @@ files:
|
|
129
132
|
- split/safe_double.h
|
130
133
|
- split/symbols.h
|
131
134
|
- split/symbols.c
|
135
|
+
- tests/benchmark_dvector_reads.rb
|
132
136
|
- tests/dtable_test.data
|
133
137
|
- tests/tc_Dtable.rb
|
134
138
|
- tests/tc_Flate.rb
|
@@ -138,13 +142,13 @@ files:
|
|
138
142
|
- tests/dvector_test.data
|
139
143
|
- tests/tc_Function.rb
|
140
144
|
- tests/tc_Dvector.rb
|
141
|
-
- tests/profile_Dvector
|
142
|
-
- tests/benchmark_dvector_reads.rb
|
143
145
|
- tests/Icon_Test.pdf
|
144
146
|
- Tioga_README
|
145
147
|
- lgpl.txt
|
146
|
-
has_rdoc:
|
148
|
+
has_rdoc: true
|
147
149
|
homepage: http://tioga.rubyforge.org
|
150
|
+
licenses:
|
151
|
+
- LGPL 2.1
|
148
152
|
post_install_message:
|
149
153
|
rdoc_options: []
|
150
154
|
|
@@ -165,9 +169,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
165
169
|
requirements: []
|
166
170
|
|
167
171
|
rubyforge_project: tioga
|
168
|
-
rubygems_version: 1.
|
172
|
+
rubygems_version: 1.3.4
|
169
173
|
signing_key:
|
170
|
-
specification_version:
|
174
|
+
specification_version: 3
|
171
175
|
summary: Tioga - a powerful scientific plotting library
|
172
176
|
test_files:
|
173
177
|
- tests/ts_Tioga.rb
|