ruby-dcl 1.6.2 → 1.6.3
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +4 -0
- data/LICENSE.txt +34 -0
- data/README_old +79 -0
- data/Rakefile +1 -1
- metadata +249 -247
data/ChangeLog
CHANGED
data/LICENSE.txt
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
RubyDCL is copyrighted free software by Takeshi Horinouchi and
|
2
|
+
GFD Dennou Club (http://www.gfd-dennou.org/).
|
3
|
+
|
4
|
+
Copyright 2011 (C) Takeshi Horinouchi and GFD Dennou Club
|
5
|
+
(http://www.gfd-dennou.org/) All rights reserved.
|
6
|
+
|
7
|
+
Redistribution and use in source and binary forms, with or without
|
8
|
+
modification, are permitted provided that the following conditions are
|
9
|
+
met:
|
10
|
+
|
11
|
+
1. Redistributions of source code must retain the above copyright
|
12
|
+
notice, this list of conditions and the following disclaimer.
|
13
|
+
|
14
|
+
2. Redistributions in binary form must reproduce the above copyright
|
15
|
+
notice, this list of conditions and the following disclaimer in
|
16
|
+
the documentation and/or other materials provided with the
|
17
|
+
distribution.
|
18
|
+
|
19
|
+
THIS SOFTWARE IS PROVIDED BY GFD DENNOU CLUB AND CONTRIBUTORS ``AS IS''
|
20
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
21
|
+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
22
|
+
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GFD DENNOU CLUB OR
|
23
|
+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
24
|
+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
25
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
26
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
27
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
28
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
29
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
30
|
+
|
31
|
+
The views and conclusions contained in the software and documentation
|
32
|
+
are those of the authors and should not be interpreted as representing
|
33
|
+
official policies, either expressed or implied, of Takeshi Horinouchi
|
34
|
+
and GFD Dennou Club.
|
data/README_old
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
|
2
|
+
RubyDCL -- a ruby interface to DCL library
|
3
|
+
|
4
|
+
by K. Goto, K. Kuroi, N. Kawanabe, and T. Horinouchi
|
5
|
+
|
6
|
+
Last Updated: Aug 27, 2001
|
7
|
+
|
8
|
+
|
9
|
+
* WHAT IS THIS?
|
10
|
+
|
11
|
+
This is a one-to-one wrapper to a scientific graphic library DCL
|
12
|
+
(http://www.gfd-dennou.org/arch/dcl/).
|
13
|
+
It was originally developed with DCL-5.1 but is currently tested
|
14
|
+
for use with the ver.5.2.
|
15
|
+
|
16
|
+
* INSTALLATION
|
17
|
+
|
18
|
+
To install this library, the following must have been installed.
|
19
|
+
|
20
|
+
* The C version of dcl: dcl-5.2C_011213 or later
|
21
|
+
(ftp://www.gfd-dennou.org/arch/dcl/dcl-5.2-C_011213.tar.gz).
|
22
|
+
Note that dcl-5.2-C.tar.gz in the directory, which is older than
|
23
|
+
dcl-5.2-C_011213.tar.gz will NOT WORK with ruby-dcl-1.0.0
|
24
|
+
or a later version of RubyDCL. The reason for that is as follows:
|
25
|
+
In the later versions of RubyDCL, exception handing was made
|
26
|
+
compliant to that in Ruby, i.e., to call the "raise" predefined
|
27
|
+
function. In order to do that, the msgdmp_ function in the C
|
28
|
+
version of DCL had to be modified.
|
29
|
+
|
30
|
+
* Ruby version 1.6 or later (http://www.ruby-lang.org/).
|
31
|
+
|
32
|
+
* NArray (http://www.ruby-lang.org/en/raa-list.rhtml?name=NArray)
|
33
|
+
which is a numeric multi-dimensional array class.
|
34
|
+
|
35
|
+
NOTE: By default, the two headers narray.h and narray_config.h
|
36
|
+
in the narraypackage are assumed to have been copied to
|
37
|
+
$(sitearchdir), which is normally
|
38
|
+
/usr/local/lib/ruby/site_ruby/1.6/$(arch)/ if you are using Unix,
|
39
|
+
where $(arch) is something like sparc-solaris2.6, a combination of
|
40
|
+
CPU and OS. You can specify the directory that contains these files
|
41
|
+
explicitly by using an environmental variable WITH_NARRAY_INCLUDE
|
42
|
+
like this:
|
43
|
+
|
44
|
+
% setenv WITH_NARRAY_INCLUDE '--with-narray-include=/narraydir/include'
|
45
|
+
or, if you are using bash,
|
46
|
+
% export WITH_NARRAY_INCLUDE='--with-narray-include=/narraydir/include'
|
47
|
+
|
48
|
+
This cause src/extconf.rb run with its value as:
|
49
|
+
cd src; ruby extconf.rb --with-narray-include=/narraydir/include;
|
50
|
+
|
51
|
+
If you are using a UNIX operating system, you only need to execute
|
52
|
+
the following command at the current directly ("%" is a "prompt". Do
|
53
|
+
not type it):
|
54
|
+
|
55
|
+
% make
|
56
|
+
|
57
|
+
(Development of a Windows version is hoped but has not been done so
|
58
|
+
far.)
|
59
|
+
|
60
|
+
The command does two things:
|
61
|
+
|
62
|
+
(1) To create source code for the C-interface from a prototype
|
63
|
+
definition of DCL in the "proto" directory.
|
64
|
+
(Equivalent to % make prt)
|
65
|
+
The source code creation is done with ruby.
|
66
|
+
|
67
|
+
The definition is in a format specific to this interface and
|
68
|
+
is made partly by hand. This is because of a necessity to
|
69
|
+
distinguish input, output, in-out, work arguments. Therefore,
|
70
|
+
to catch up future development of DCL, it has to be updated
|
71
|
+
by hand again.
|
72
|
+
|
73
|
+
|
74
|
+
(2) To compile the source code.
|
75
|
+
(Equivalent to % make lib)
|
76
|
+
|
77
|
+
Unlike (1), commands used for this process are platform
|
78
|
+
dependent. Auto-configuration is done by src/extconf.rb,
|
79
|
+
so the user does not have to care platform dependence.
|
data/Rakefile
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-dcl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 9
|
5
|
+
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 6
|
9
|
-
-
|
10
|
-
version: 1.6.
|
9
|
+
- 3
|
10
|
+
version: 1.6.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- T. Horinouchi
|
@@ -20,7 +20,7 @@ autorequire:
|
|
20
20
|
bindir: bin
|
21
21
|
cert_chain: []
|
22
22
|
|
23
|
-
date: 2011-
|
23
|
+
date: 2011-12-01 00:00:00 +09:00
|
24
24
|
default_executable:
|
25
25
|
dependencies:
|
26
26
|
- !ruby/object:Gem::Dependency
|
@@ -76,324 +76,326 @@ extensions:
|
|
76
76
|
extra_rdoc_files: []
|
77
77
|
|
78
78
|
files:
|
79
|
+
- math1_viblib.c
|
80
|
+
- math2_fftlib.c
|
81
|
+
- math1_intlib.c
|
82
|
+
- grph1_scpack.c
|
83
|
+
- grph1_csgi.c
|
84
|
+
- grph2_uhpack.c
|
85
|
+
- Rakefile
|
86
|
+
- math1_rfblib.c
|
87
|
+
- grph2_uepack.c
|
88
|
+
- grph2_uwpack.c
|
89
|
+
- dcl_rubydcloriginal.c
|
90
|
+
- grph2_udpack.c
|
91
|
+
- LICENSE.txt
|
92
|
+
- math1_vialib.c
|
79
93
|
- grph2_umpack.c
|
80
|
-
-
|
81
|
-
- math1_indxlib.c
|
82
|
-
- math1_syslib.c
|
83
|
-
- grph2_uvpack.c
|
84
|
-
- math2_intrlib.c
|
85
|
-
- misc1_fmtlib.c
|
86
|
-
- grph2_uxpack.c
|
87
|
-
- grph1_zgpack.c.org
|
88
|
-
- init.c.default
|
89
|
-
- math1_rfalib.c
|
94
|
+
- README
|
90
95
|
- init.c.gtk
|
91
|
-
-
|
92
|
-
-
|
93
|
-
-
|
94
|
-
-
|
96
|
+
- math1_ifalib.c
|
97
|
+
- math1_gt2dlib.c
|
98
|
+
- dcl_obj2cary.c
|
99
|
+
- math2_vstlib.c
|
100
|
+
- grph2_uypack.c
|
101
|
+
- math1_lrllib.c
|
102
|
+
- grph1_swpack.c
|
103
|
+
- grph2_uzpack.c
|
104
|
+
- misc1_chnlib.c
|
105
|
+
- grph2_grpack.c
|
95
106
|
- misc1_randlib.c
|
107
|
+
- math2_intrlib.c
|
96
108
|
- math1_sublib.c
|
109
|
+
- README_old
|
110
|
+
- grph1_stpack.c
|
111
|
+
- math1_vrblib.c
|
112
|
+
- math2_shtlib.c
|
113
|
+
- init.c.default
|
114
|
+
- grph2_uvpack.c
|
115
|
+
- math1_syslib.c
|
116
|
+
- grph1_sgpack.c
|
97
117
|
- dummy.c
|
98
|
-
-
|
99
|
-
-
|
118
|
+
- math1_blklib.c
|
119
|
+
- math1_gnmlib.c
|
100
120
|
- grph2_uupack.c
|
121
|
+
- ChangeLog
|
122
|
+
- dcl_cary2obj.c
|
123
|
+
- extconf.rb
|
101
124
|
- grph2_uspack.c
|
102
|
-
- misc1_chnlib.c
|
103
|
-
- misc1_datelib.c
|
104
125
|
- grph2_ugpack.c
|
105
|
-
-
|
106
|
-
-
|
107
|
-
-
|
108
|
-
-
|
126
|
+
- misc1_datelib.c
|
127
|
+
- math1_fnclib.c
|
128
|
+
- grph2_ulpack.c
|
129
|
+
- math1_indxlib.c
|
130
|
+
- math1_vralib.c
|
109
131
|
- dcl_narrayed_funcs.c
|
110
|
-
-
|
111
|
-
-
|
112
|
-
-
|
113
|
-
- math1_ifalib.c
|
114
|
-
- grph1_stpack.c
|
132
|
+
- math1_chrlib.c
|
133
|
+
- math1_oslib.c
|
134
|
+
- ToDo
|
115
135
|
- grph2_ucpack.c
|
116
|
-
-
|
117
|
-
-
|
118
|
-
-
|
119
|
-
-
|
120
|
-
-
|
121
|
-
- grph1_scpack.c
|
122
|
-
- math1_vrblib.c
|
123
|
-
- math1_rfblib.c
|
124
|
-
- math2_fftlib.c
|
136
|
+
- math1_rfalib.c
|
137
|
+
- misc1_fmtlib.c
|
138
|
+
- grph1_slpack.c
|
139
|
+
- grph1_zgpack.c.org
|
140
|
+
- grph2_uxpack.c
|
125
141
|
- math1_maplib.c
|
126
|
-
-
|
127
|
-
-
|
128
|
-
- dcl_cary2obj.c
|
129
|
-
- grph2_ulpack.c
|
142
|
+
- misc1_timelib.c
|
143
|
+
- math1_xfclib.c
|
130
144
|
- misc1_misclib.c
|
131
|
-
- math1_viblib.c
|
132
|
-
- grph1_csgi.c
|
133
|
-
- grph2_uzpack.c
|
134
|
-
- math1_gt2dlib.c
|
135
|
-
- math1_intlib.c
|
136
|
-
- grph1_swpack.c
|
137
145
|
- math2_rnmlib.c
|
138
|
-
- math2_shtlib.c
|
139
|
-
- math1_blklib.c
|
140
|
-
- grph2_udpack.c
|
141
|
-
- extconf.rb
|
142
|
-
- ToDo
|
143
|
-
- grph2_uepack.c
|
144
146
|
- lib/dcl.rb
|
145
|
-
- GenWrapper/
|
146
|
-
- GenWrapper/
|
147
|
-
- GenWrapper/dcl_narrayed_funcs.rb
|
148
|
-
- GenWrapper/dcl_rb_footing
|
149
|
-
- GenWrapper/etc/p_header
|
147
|
+
- GenWrapper/variable.rb
|
148
|
+
- GenWrapper/etc/dcl_gen
|
150
149
|
- GenWrapper/etc/p_init
|
151
150
|
- GenWrapper/etc/Mk_proto
|
152
|
-
- GenWrapper/etc/
|
151
|
+
- GenWrapper/etc/p_header
|
152
|
+
- GenWrapper/Makefile
|
153
|
+
- GenWrapper/prototype.rb
|
153
154
|
- GenWrapper/dcl_rb_heading
|
154
|
-
- GenWrapper/
|
155
|
-
- GenWrapper/variable.rb
|
156
|
-
- GenWrapper/proto/math1_oslib.fp
|
157
|
-
- GenWrapper/proto/grph1_csgi.fp
|
158
|
-
- GenWrapper/proto/math2_shtlib.fp
|
159
|
-
- GenWrapper/proto/math1_intlib.fp
|
160
|
-
- GenWrapper/proto/math1_syslib.fp
|
155
|
+
- GenWrapper/proto/grph2_00
|
161
156
|
- GenWrapper/proto/grph2_uxpack.fp
|
162
|
-
- GenWrapper/proto/
|
163
|
-
- GenWrapper/proto/
|
164
|
-
- GenWrapper/proto/
|
165
|
-
- GenWrapper/proto/
|
166
|
-
- GenWrapper/proto/
|
157
|
+
- GenWrapper/proto/math1_maplib.fp
|
158
|
+
- GenWrapper/proto/grph1_slpack.fp
|
159
|
+
- GenWrapper/proto/math1_viblib.fp
|
160
|
+
- GenWrapper/proto/math1_oslib.fp
|
161
|
+
- GenWrapper/proto/math1_chrlib.fp
|
162
|
+
- GenWrapper/proto/misc1_misclib.fp
|
167
163
|
- GenWrapper/proto/grph2_grpack.fp
|
164
|
+
- GenWrapper/proto/misc1_chnlib.fp
|
165
|
+
- GenWrapper/proto/Makefile
|
166
|
+
- GenWrapper/proto/math2_intrlib.fp
|
167
|
+
- GenWrapper/proto/math2_vstlib.fp
|
168
|
+
- GenWrapper/proto/grph2_udpack.fp
|
169
|
+
- GenWrapper/proto/misc1_00
|
170
|
+
- GenWrapper/proto/grph1_00
|
171
|
+
- GenWrapper/proto/math2_shtlib.fp
|
168
172
|
- GenWrapper/proto/math1_vralib.fp
|
169
|
-
- GenWrapper/proto/
|
173
|
+
- GenWrapper/proto/math1_00
|
174
|
+
- GenWrapper/proto/math2_fftlib.fp
|
175
|
+
- GenWrapper/proto/math1_rfblib.fp
|
176
|
+
- GenWrapper/proto/math2_rnmlib.fp
|
170
177
|
- GenWrapper/proto/grph2_umpack.fp
|
171
|
-
- GenWrapper/proto/grph2_uepack.fp
|
172
|
-
- GenWrapper/proto/math1_xfclib.fp
|
173
178
|
- GenWrapper/proto/math1_ifalib.fp
|
174
|
-
- GenWrapper/proto/grph2_uypack.fp
|
175
|
-
- GenWrapper/proto/math1_indxlib.fp
|
176
|
-
- GenWrapper/proto/grph2_uhpack.fp
|
177
|
-
- GenWrapper/proto/math1_rfalib.fp
|
178
|
-
- GenWrapper/proto/grph2_uwpack.fp
|
179
|
-
- GenWrapper/proto/math2_00
|
180
|
-
- GenWrapper/proto/math1_maplib.fp
|
181
|
-
- GenWrapper/proto/misc1_datelib.fp
|
182
179
|
- GenWrapper/proto/math1_vialib.fp
|
183
|
-
- GenWrapper/proto/
|
184
|
-
- GenWrapper/proto/
|
185
|
-
- GenWrapper/proto/
|
186
|
-
- GenWrapper/proto/
|
187
|
-
- GenWrapper/proto/
|
180
|
+
- GenWrapper/proto/grph2_uzpack.fp
|
181
|
+
- GenWrapper/proto/math2_shtlib.fp_old
|
182
|
+
- GenWrapper/proto/math1_syslib.fp
|
183
|
+
- GenWrapper/proto/misc1_fmtlib.fp
|
184
|
+
- GenWrapper/proto/math1_rfalib.fp
|
185
|
+
- GenWrapper/proto/grph2_uupack.fp
|
186
|
+
- GenWrapper/proto/grph1_sgpack.fp
|
187
|
+
- GenWrapper/proto/math1_indxlib.fp
|
188
|
+
- GenWrapper/proto/grph1_scpack.fp
|
188
189
|
- GenWrapper/proto/grph2_ugpack.fp
|
189
|
-
- GenWrapper/proto/misc1_misclib.fp
|
190
|
-
- GenWrapper/proto/math2_vstlib.fp
|
191
190
|
- GenWrapper/proto/grph2_ulpack.fp
|
192
|
-
- GenWrapper/proto/
|
193
|
-
- GenWrapper/proto/
|
194
|
-
- GenWrapper/proto/
|
195
|
-
- GenWrapper/proto/grph2_ucpack.fp
|
191
|
+
- GenWrapper/proto/math1_xfclib.fp
|
192
|
+
- GenWrapper/proto/misc1_randlib.fp
|
193
|
+
- GenWrapper/proto/math2_00
|
196
194
|
- GenWrapper/proto/math1_gnmlib.fp
|
197
195
|
- GenWrapper/proto/math1_fnclib.fp
|
198
|
-
- GenWrapper/proto/Makefile
|
199
|
-
- GenWrapper/proto/grph2_udpack.fp
|
200
|
-
- GenWrapper/proto/grph2_uvpack.fp
|
201
|
-
- GenWrapper/proto/grph1_sgpack.fp
|
202
|
-
- GenWrapper/proto/grph1_00
|
203
|
-
- GenWrapper/proto/math2_fftlib.fp
|
204
|
-
- GenWrapper/proto/grph2_uspack.fp
|
205
|
-
- GenWrapper/proto/grph2_uzpack.fp
|
206
196
|
- GenWrapper/proto/math1_blklib.fp
|
207
|
-
- GenWrapper/proto/
|
208
|
-
- GenWrapper/proto/
|
209
|
-
- GenWrapper/proto/grph1_slpack.fp
|
210
|
-
- GenWrapper/proto/grph1_scpack.fp
|
211
|
-
- GenWrapper/proto/math1_rfblib.fp
|
212
|
-
- GenWrapper/proto/misc1_00
|
213
|
-
- GenWrapper/proto/math1_gt2dlib.fp
|
214
|
-
- GenWrapper/proto/grph2_uupack.fp
|
197
|
+
- GenWrapper/proto/grph1_csgi.fp
|
198
|
+
- GenWrapper/proto/grph2_uypack.fp
|
215
199
|
- GenWrapper/proto/misc1_timelib.fp
|
200
|
+
- GenWrapper/proto/math1_lrllib.fp
|
201
|
+
- GenWrapper/proto/grph1_stpack.fp
|
202
|
+
- GenWrapper/proto/grph2_uhpack.fp
|
203
|
+
- GenWrapper/proto/grph2_uspack.fp
|
204
|
+
- GenWrapper/proto/math1_gt2dlib.fp
|
205
|
+
- GenWrapper/proto/grph2_uwpack.fp
|
206
|
+
- GenWrapper/proto/math1_vrblib.fp
|
207
|
+
- GenWrapper/proto/math1_sublib.fp
|
208
|
+
- GenWrapper/proto/grph2_uvpack.fp
|
209
|
+
- GenWrapper/proto/grph1_swpack.fp
|
210
|
+
- GenWrapper/proto/grph2_ucpack.fp
|
211
|
+
- GenWrapper/proto/math1_intlib.fp
|
212
|
+
- GenWrapper/proto/math2_odelib.fp_notused
|
213
|
+
- GenWrapper/proto/grph2_uepack.fp
|
214
|
+
- GenWrapper/proto/misc1_datelib.fp
|
216
215
|
- GenWrapper/def.rb
|
216
|
+
- GenWrapper/dcl_rb_footing
|
217
217
|
- GenWrapper/cproto2init.rb
|
218
|
-
- GenWrapper/
|
219
|
-
- GenWrapper/Makefile
|
218
|
+
- GenWrapper/util.rb
|
220
219
|
- GenWrapper/pparse.rb
|
220
|
+
- GenWrapper/proto2c.rb
|
221
|
+
- GenWrapper/elim_ary_size.rb
|
222
|
+
- GenWrapper/dcl_narrayed_funcs.rb
|
223
|
+
- obsolete/dcl_ext.html
|
221
224
|
- obsolete/README
|
222
225
|
- obsolete/dcl_ext.rb
|
223
|
-
-
|
224
|
-
- demo/grph2/
|
225
|
-
- demo/grph2/
|
226
|
-
- demo/grph2/ximage/tomsclm.dat
|
227
|
-
- demo/grph2/uxyzpk/uxyz01.rb
|
228
|
-
- demo/grph2/uxyzpk/uxyz07.rb
|
226
|
+
- demo/grph2/uxyzpk/uxyz08.rb
|
227
|
+
- demo/grph2/uxyzpk/uxyz10.rb
|
228
|
+
- demo/grph2/uxyzpk/uxyz03.rb
|
229
229
|
- demo/grph2/uxyzpk/uxyz05.rb
|
230
230
|
- demo/grph2/uxyzpk/uxyz04.rb
|
231
|
-
- demo/grph2/uxyzpk/uxyz03.rb
|
232
|
-
- demo/grph2/uxyzpk/uxyz09.rb
|
233
|
-
- demo/grph2/uxyzpk/uxyz02.rb
|
234
231
|
- demo/grph2/uxyzpk/uxyz06.rb
|
235
|
-
- demo/grph2/uxyzpk/
|
236
|
-
- demo/grph2/uxyzpk/
|
237
|
-
- demo/grph2/
|
238
|
-
- demo/grph2/
|
239
|
-
- demo/grph2/
|
240
|
-
- demo/grph2/
|
241
|
-
- demo/grph2/
|
242
|
-
- demo/grph2/udegpk/u2df07.rb
|
243
|
-
- demo/grph2/udegpk/u2df09c.rb
|
244
|
-
- demo/grph2/udegpk/u2df04.rb
|
245
|
-
- demo/grph2/udegpk/u2df09f.rb
|
246
|
-
- demo/grph2/udegpk/u2df02.rb
|
247
|
-
- demo/grph2/udegpk/u2df09e.rb
|
248
|
-
- demo/grph2/udegpk/u2df06.rb
|
249
|
-
- demo/grph2/uupack/uupk01.rb
|
250
|
-
- demo/grph2/uupack/uupk06.rb
|
232
|
+
- demo/grph2/uxyzpk/uxyz01.rb
|
233
|
+
- demo/grph2/uxyzpk/uxyz02.rb
|
234
|
+
- demo/grph2/uxyzpk/uxyz07.rb
|
235
|
+
- demo/grph2/uxyzpk/uxyz09.rb
|
236
|
+
- demo/grph2/ximage/tomsclm.dat
|
237
|
+
- demo/grph2/ximage/ximg01.rb
|
238
|
+
- demo/grph2/ximage/MEMO
|
251
239
|
- demo/grph2/uupack/uupk03.rb
|
252
|
-
- demo/grph2/uupack/
|
253
|
-
- demo/grph2/uupack/uupk05.rb
|
240
|
+
- demo/grph2/uupack/uupk01.rb
|
254
241
|
- demo/grph2/uupack/uupk04.rb
|
242
|
+
- demo/grph2/uupack/uupk05.rb
|
255
243
|
- demo/grph2/uupack/uupk07.rb
|
256
|
-
- demo/grph2/
|
257
|
-
- demo/grph2/
|
258
|
-
- demo/grph2/g2pack/g2pk02.rb
|
259
|
-
- demo/grph2/umpack/test04.rb
|
244
|
+
- demo/grph2/uupack/uupk06.rb
|
245
|
+
- demo/grph2/uupack/uupk02.rb
|
260
246
|
- demo/grph2/umpack/t811231.dat
|
261
|
-
- demo/grph2/umpack/
|
262
|
-
- demo/grph2/umpack/umpk02.rb
|
247
|
+
- demo/grph2/umpack/test03.rb
|
263
248
|
- demo/grph2/umpack/test06.rb
|
264
|
-
- demo/grph2/umpack/
|
249
|
+
- demo/grph2/umpack/test09.rb
|
250
|
+
- demo/grph2/umpack/umpk05.rb
|
251
|
+
- demo/grph2/umpack/test05.rb
|
265
252
|
- demo/grph2/umpack/test08.rb
|
266
|
-
- demo/grph2/umpack/
|
253
|
+
- demo/grph2/umpack/test10.rb
|
254
|
+
- demo/grph2/umpack/umpk03.rb
|
267
255
|
- demo/grph2/umpack/test01.rb
|
256
|
+
- demo/grph2/umpack/test07.rb
|
257
|
+
- demo/grph2/umpack/test04.rb
|
258
|
+
- demo/grph2/umpack/umpk01.rb
|
259
|
+
- demo/grph2/umpack/umpk02.rb
|
268
260
|
- demo/grph2/umpack/umpk04.rb
|
269
261
|
- demo/grph2/umpack/test02.rb
|
270
|
-
- demo/grph2/
|
271
|
-
- demo/grph2/
|
272
|
-
- demo/grph2/
|
273
|
-
- demo/grph2/
|
274
|
-
- demo/grph2/
|
275
|
-
- demo/grph2/
|
276
|
-
- demo/grph2/
|
277
|
-
- demo/grph2/
|
278
|
-
- demo/grph2/
|
279
|
-
- demo/grph2/
|
280
|
-
- demo/grph2/
|
281
|
-
- demo/grph2/
|
262
|
+
- demo/grph2/udegpk/u2df05.rb
|
263
|
+
- demo/grph2/udegpk/u2df04.rb
|
264
|
+
- demo/grph2/udegpk/u2df06.rb
|
265
|
+
- demo/grph2/udegpk/u2df01.rb
|
266
|
+
- demo/grph2/udegpk/u2df02.rb
|
267
|
+
- demo/grph2/udegpk/u2df03.rb
|
268
|
+
- demo/grph2/udegpk/u2df09f.rb
|
269
|
+
- demo/grph2/udegpk/u2df08.rb
|
270
|
+
- demo/grph2/udegpk/u2df09e.rb
|
271
|
+
- demo/grph2/udegpk/u2df09b.rb
|
272
|
+
- demo/grph2/udegpk/u2df07.rb
|
273
|
+
- demo/grph2/udegpk/u2df09c.rb
|
282
274
|
- demo/grph2/uspack/uspk06.rb
|
283
|
-
- demo/grph2/uspack/uspk01.rb
|
284
275
|
- demo/grph2/uspack/uspk02.rb
|
276
|
+
- demo/grph2/uspack/uspk10.rb
|
277
|
+
- demo/grph2/uspack/uspk08.rb
|
278
|
+
- demo/grph2/uspack/uspk07.rb
|
285
279
|
- demo/grph2/uspack/uspk03.rb
|
280
|
+
- demo/grph2/uspack/uspk09.rb
|
281
|
+
- demo/grph2/uspack/uspk05.rb
|
282
|
+
- demo/grph2/uspack/uspk04.rb
|
283
|
+
- demo/grph2/uspack/uspk01.rb
|
286
284
|
- demo/grph2/uspack/uspk12.rb
|
287
285
|
- demo/grph2/uspack/uspk11.rb
|
288
|
-
- demo/grph2/
|
286
|
+
- demo/grph2/ulpack/ulpk02.rb
|
287
|
+
- demo/grph2/ulpack/ulpk01n.rb
|
289
288
|
- demo/grph2/ulpack/ulpk01.rb
|
290
289
|
- demo/grph2/ulpack/ulpk02n.rb
|
291
|
-
- demo/grph2/
|
292
|
-
- demo/grph2/
|
293
|
-
- demo/
|
294
|
-
- demo/
|
290
|
+
- demo/grph2/g2pack/g2pk01.rb
|
291
|
+
- demo/grph2/g2pack/g2pk02.rb
|
292
|
+
- demo/grph2/grpack/grpk01.rb
|
293
|
+
- demo/grph2/ucpack/ucpk01.rb
|
294
|
+
- demo/grph2/ucpack/ucpk02.rb
|
295
|
+
- demo/math1/gt2dlib/gt2d01.rb
|
295
296
|
- demo/math2/intrlib/intr01.rb
|
296
|
-
- demo/math2/
|
297
|
-
- demo/math2/
|
297
|
+
- demo/math2/vstlib/vstl02.rb
|
298
|
+
- demo/math2/vstlib/vstl01.rb
|
298
299
|
- demo/math2/fftlib/fftl01.rb
|
299
|
-
- demo/
|
300
|
-
- demo/
|
301
|
-
- demo/grph1/sgpack/sgpk10.rb
|
302
|
-
- demo/grph1/sgpack/sgksx3.rb
|
303
|
-
- demo/grph1/sgpack/sgpk06.rb
|
304
|
-
- demo/grph1/sgpack/sgpk09.rb
|
305
|
-
- demo/grph1/sgpack/sgfont.rb
|
306
|
-
- demo/grph1/sgpack/sglidx.rb
|
307
|
-
- demo/grph1/sgpack/sgpk05.rb
|
308
|
-
- demo/grph1/sgpack/sgpk04.rb
|
309
|
-
- demo/grph1/sgpack/sgtclr.rb
|
310
|
-
- demo/grph1/sgpack/sgfonz.rb
|
311
|
-
- demo/grph1/sgpack/sgksx1.rb
|
312
|
-
- demo/grph1/sgpack/sgpk02.rb
|
313
|
-
- demo/grph1/sgpack/sgpk08.rb
|
314
|
-
- demo/grph1/sgpack/sgltyp.rb
|
315
|
-
- demo/grph1/sgpack/sgpk07.rb
|
316
|
-
- demo/grph1/sgpack/sgksx2.rb
|
317
|
-
- demo/grph1/sgpack/sgpk03.rb
|
318
|
-
- demo/grph1/sgpack/sgpk01.rb
|
319
|
-
- demo/grph1/sgpack/sgtone.rb
|
320
|
-
- demo/grph1/slpack/slpk04.rb
|
321
|
-
- demo/grph1/slpack/slpk03.rb
|
322
|
-
- demo/grph1/slpack/slpk02.rb
|
323
|
-
- demo/grph1/slpack/slpk01.rb
|
324
|
-
- demo/grph1/scpack/scpkt3.rb
|
325
|
-
- demo/grph1/scpack/t811231.dat
|
326
|
-
- demo/grph1/scpack/scpkt2.rb
|
327
|
-
- demo/grph1/scpack/scpkt6.rb
|
328
|
-
- demo/grph1/scpack/t810630.dat
|
329
|
-
- demo/grph1/scpack/scpkt7.rb
|
330
|
-
- demo/grph1/scpack/scpkt8.rb
|
300
|
+
- demo/math2/fftlib/fftl02.rb
|
301
|
+
- demo/math2/rnmlib/rnml01.rb
|
331
302
|
- demo/gokuraku/hop/hop.rb
|
332
|
-
- demo/gokuraku/u2d/u2d1.rb
|
333
|
-
- demo/gokuraku/u2d/u2d4.rb
|
334
|
-
- demo/gokuraku/u2d/u2d2.rb
|
335
|
-
- demo/gokuraku/u2d/u2d3.rb
|
336
|
-
- demo/gokuraku/layout/lay1.rb
|
337
|
-
- demo/gokuraku/layout/lay2.rb
|
338
|
-
- demo/gokuraku/jump/jump2.rb
|
339
303
|
- demo/gokuraku/jump/jump1.rb
|
304
|
+
- demo/gokuraku/jump/jump2.rb
|
340
305
|
- demo/gokuraku/u1d/u1d1.rb
|
341
306
|
- demo/gokuraku/u1d/u1d2.rb
|
342
|
-
- demo/gokuraku/
|
307
|
+
- demo/gokuraku/u2d/u2d2.rb
|
308
|
+
- demo/gokuraku/u2d/u2d4.rb
|
309
|
+
- demo/gokuraku/u2d/u2d3.rb
|
310
|
+
- demo/gokuraku/u2d/u2d1.rb
|
343
311
|
- demo/gokuraku/step/step0.rb
|
312
|
+
- demo/gokuraku/step/step1.rb
|
344
313
|
- demo/gokuraku/step/step2.rb
|
345
|
-
- demo/
|
314
|
+
- demo/gokuraku/layout/lay2.rb
|
315
|
+
- demo/gokuraku/layout/lay1.rb
|
316
|
+
- demo/rubydcloriginal/uemrkz1.rb
|
317
|
+
- demo/grph1/scpack/t811231.dat
|
318
|
+
- demo/grph1/scpack/scpkt2.rb
|
319
|
+
- demo/grph1/scpack/t810630.dat
|
320
|
+
- demo/grph1/scpack/scpkt8.rb
|
321
|
+
- demo/grph1/scpack/scpkt6.rb
|
322
|
+
- demo/grph1/scpack/scpkt3.rb
|
323
|
+
- demo/grph1/scpack/scpkt7.rb
|
324
|
+
- demo/grph1/slpack/slpk02.rb
|
325
|
+
- demo/grph1/slpack/slpk04.rb
|
326
|
+
- demo/grph1/slpack/slpk03.rb
|
327
|
+
- demo/grph1/slpack/slpk01.rb
|
328
|
+
- demo/grph1/sgpack/sgltyp.rb
|
329
|
+
- demo/grph1/sgpack/sgpk07.rb
|
330
|
+
- demo/grph1/sgpack/sgpk04.rb
|
331
|
+
- demo/grph1/sgpack/sgpk06.rb
|
332
|
+
- demo/grph1/sgpack/sgpk08.rb
|
333
|
+
- demo/grph1/sgpack/sgfonz.rb
|
334
|
+
- demo/grph1/sgpack/sgksx1.rb
|
335
|
+
- demo/grph1/sgpack/sgtone.rb
|
336
|
+
- demo/grph1/sgpack/sgtclr.rb
|
337
|
+
- demo/grph1/sgpack/sgfont.rb
|
338
|
+
- demo/grph1/sgpack/sgpk03.rb
|
339
|
+
- demo/grph1/sgpack/sgksx3.rb
|
340
|
+
- demo/grph1/sgpack/sgpk09.rb
|
341
|
+
- demo/grph1/sgpack/sgpk02.rb
|
342
|
+
- demo/grph1/sgpack/sgtonz.rb
|
343
|
+
- demo/grph1/sgpack/sglidx.rb
|
344
|
+
- demo/grph1/sgpack/sgpk01.rb
|
345
|
+
- demo/grph1/sgpack/sgpk10.rb
|
346
|
+
- demo/grph1/sgpack/sgpk05.rb
|
347
|
+
- demo/grph1/sgpack/sgksx2.rb
|
346
348
|
- demo/rakuraku/miss/miss1.rb
|
347
|
-
- demo/rakuraku/
|
348
|
-
- demo/rakuraku/
|
349
|
-
- demo/rakuraku/
|
350
|
-
- demo/rakuraku/
|
351
|
-
- demo/rakuraku/
|
352
|
-
- demo/rakuraku/
|
353
|
-
- demo/rakuraku/u2d/u2d6.rb
|
354
|
-
- demo/rakuraku/map3d/map3d4.rb
|
355
|
-
- demo/rakuraku/map3d/map3d6.rb
|
356
|
-
- demo/rakuraku/map3d/map3d3.rb
|
357
|
-
- demo/rakuraku/map3d/map3d1.rb
|
358
|
-
- demo/rakuraku/map3d/map3d2.rb
|
359
|
-
- demo/rakuraku/map3d/map3d7.rb
|
360
|
-
- demo/rakuraku/map3d/map3d5.rb
|
361
|
-
- demo/rakuraku/kihon/kihona.rb
|
362
|
-
- demo/rakuraku/kihon/kihon7.rb
|
349
|
+
- demo/rakuraku/miss/miss2.rb
|
350
|
+
- demo/rakuraku/kihon/kihon8.rb
|
351
|
+
- demo/rakuraku/kihon/kihon1.rb
|
352
|
+
- demo/rakuraku/kihon/kihon4.rb
|
353
|
+
- demo/rakuraku/kihon/kihonb.rb
|
354
|
+
- demo/rakuraku/kihon/kihon3.rb
|
363
355
|
- demo/rakuraku/kihon/kihon2.rb
|
364
|
-
- demo/rakuraku/kihon/kihonc.rb
|
365
356
|
- demo/rakuraku/kihon/kihon9.rb
|
366
|
-
- demo/rakuraku/kihon/
|
357
|
+
- demo/rakuraku/kihon/kihona.rb
|
358
|
+
- demo/rakuraku/kihon/kihon7.rb
|
367
359
|
- demo/rakuraku/kihon/kihon6.rb
|
368
|
-
- demo/rakuraku/kihon/kihon4.rb
|
369
360
|
- demo/rakuraku/kihon/kihon5.rb
|
370
|
-
- demo/rakuraku/kihon/
|
371
|
-
- demo/rakuraku/
|
372
|
-
- demo/rakuraku/kihon/kihonb.rb
|
373
|
-
- demo/rakuraku/layout/lay1.rb
|
374
|
-
- demo/rakuraku/layout/lay2.rb
|
375
|
-
- demo/rakuraku/layout/lay3.rb
|
361
|
+
- demo/rakuraku/kihon/kihonc.rb
|
362
|
+
- demo/rakuraku/quick/quick2.rb
|
376
363
|
- demo/rakuraku/quick/quick3.rb
|
377
364
|
- demo/rakuraku/quick/quick4.rb
|
378
|
-
- demo/rakuraku/quick/quick2.rb
|
379
|
-
- demo/rakuraku/quick/quick5.rb
|
380
365
|
- demo/rakuraku/quick/quick1.rb
|
381
|
-
- demo/rakuraku/
|
366
|
+
- demo/rakuraku/quick/quick5.rb
|
367
|
+
- demo/rakuraku/u2d/u2d2.rb
|
368
|
+
- demo/rakuraku/u2d/u2d4.rb
|
369
|
+
- demo/rakuraku/u2d/u2d3.rb
|
370
|
+
- demo/rakuraku/u2d/u2d6.rb
|
371
|
+
- demo/rakuraku/u2d/u2d5.rb
|
372
|
+
- demo/rakuraku/u2d/u2d7.rb
|
373
|
+
- demo/rakuraku/u2d/u2d1.rb
|
382
374
|
- demo/rakuraku/color/color2.rb
|
383
375
|
- demo/rakuraku/color/color1.rb
|
384
|
-
- demo/rakuraku/
|
385
|
-
- demo/rakuraku/uspack/uspac2.rb
|
376
|
+
- demo/rakuraku/color/color3.rb
|
386
377
|
- demo/rakuraku/uspack/uspac3.rb
|
387
378
|
- demo/rakuraku/uspack/uspac1.rb
|
388
|
-
- demo/rakuraku/
|
379
|
+
- demo/rakuraku/uspack/uspac4.rb
|
380
|
+
- demo/rakuraku/uspack/uspac2.rb
|
389
381
|
- demo/rakuraku/uxyz/uxyz7.rb
|
390
|
-
- demo/rakuraku/uxyz/
|
391
|
-
- demo/rakuraku/uxyz/uxyz1.rb
|
382
|
+
- demo/rakuraku/uxyz/uxyz8.rb
|
392
383
|
- demo/rakuraku/uxyz/uxyz2.rb
|
384
|
+
- demo/rakuraku/uxyz/uxyz1.rb
|
393
385
|
- demo/rakuraku/uxyz/uxyz3.rb
|
386
|
+
- demo/rakuraku/uxyz/uxyz6.rb
|
394
387
|
- demo/rakuraku/uxyz/uxyz4.rb
|
395
|
-
- demo/rakuraku/uxyz/
|
396
|
-
- demo/
|
388
|
+
- demo/rakuraku/uxyz/uxyz5.rb
|
389
|
+
- demo/rakuraku/map3d/map3d1.rb
|
390
|
+
- demo/rakuraku/map3d/map3d7.rb
|
391
|
+
- demo/rakuraku/map3d/map3d2.rb
|
392
|
+
- demo/rakuraku/map3d/map3d6.rb
|
393
|
+
- demo/rakuraku/map3d/map3d4.rb
|
394
|
+
- demo/rakuraku/map3d/map3d5.rb
|
395
|
+
- demo/rakuraku/map3d/map3d3.rb
|
396
|
+
- demo/rakuraku/layout/lay2.rb
|
397
|
+
- demo/rakuraku/layout/lay3.rb
|
398
|
+
- demo/rakuraku/layout/lay1.rb
|
397
399
|
has_rdoc: true
|
398
400
|
homepage: http://www.gfd-dennou.org/arch/ruby/products/ruby-dcl/
|
399
401
|
licenses:
|
@@ -425,7 +427,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
425
427
|
requirements: []
|
426
428
|
|
427
429
|
rubyforge_project:
|
428
|
-
rubygems_version: 1.
|
430
|
+
rubygems_version: 1.3.7
|
429
431
|
signing_key:
|
430
432
|
specification_version: 3
|
431
433
|
summary: one-to-one interface to the DCL graphic library
|