carray 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/COPYING +56 -0
- data/GPL +340 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +33 -0
- data/LEGAL +50 -0
- data/NOTE +73 -0
- data/Rakefile +20 -0
- data/TODO +5 -0
- data/ca_iter_block.c +242 -0
- data/ca_iter_dimension.c +287 -0
- data/ca_iter_window.c +202 -0
- data/ca_obj_array.c +1189 -0
- data/ca_obj_bitarray.c +523 -0
- data/ca_obj_bitfield.c +636 -0
- data/ca_obj_block.c +885 -0
- data/ca_obj_fake.c +405 -0
- data/ca_obj_farray.c +482 -0
- data/ca_obj_field.c +625 -0
- data/ca_obj_grid.c +738 -0
- data/ca_obj_mapping.c +614 -0
- data/ca_obj_object.c +777 -0
- data/ca_obj_reduce.c +299 -0
- data/ca_obj_refer.c +627 -0
- data/ca_obj_repeat.c +640 -0
- data/ca_obj_select.c +558 -0
- data/ca_obj_shift.c +952 -0
- data/ca_obj_transpose.c +582 -0
- data/ca_obj_unbound_repeat.c +557 -0
- data/ca_obj_window.c +1023 -0
- data/carray.h +1381 -0
- data/carray_access.c +1798 -0
- data/carray_attribute.c +903 -0
- data/carray_call_cfunc.c +1107 -0
- data/carray_cast.c +1155 -0
- data/carray_cast_func.rb +498 -0
- data/carray_class.c +132 -0
- data/carray_conversion.c +518 -0
- data/carray_copy.c +453 -0
- data/carray_core.c +1307 -0
- data/carray_element.c +572 -0
- data/carray_generate.c +681 -0
- data/carray_iterator.c +630 -0
- data/carray_loop.c +462 -0
- data/carray_mask.c +1174 -0
- data/carray_math.rb +834 -0
- data/carray_numeric.c +257 -0
- data/carray_operator.c +582 -0
- data/carray_order.c +1040 -0
- data/carray_random.c +529 -0
- data/carray_sort_addr.c +261 -0
- data/carray_stat.c +2102 -0
- data/carray_stat_proc.rb +1990 -0
- data/carray_test.c +602 -0
- data/carray_undef.c +69 -0
- data/carray_utils.c +740 -0
- data/ext/calculus/carray_calculus.c +792 -0
- data/ext/calculus/carray_interp.c +355 -0
- data/ext/calculus/extconf.rb +12 -0
- data/ext/calculus/lib/autoload/autoload_math_calculus.rb +2 -0
- data/ext/calculus/lib/math/calculus.rb +119 -0
- data/ext/calculus/lib/math/interp/adapter_interp1d.rb +31 -0
- data/ext/dataframe/API.txt +11 -0
- data/ext/dataframe/extconf.rb +3 -0
- data/ext/dataframe/lib/carray/autoload/autoload_dataframe_dataframe.rb +14 -0
- data/ext/dataframe/lib/carray/dataframe/dataframe.rb +1104 -0
- data/ext/dataframe/sample/test_uniq_sort.rb +5 -0
- data/ext/fortio/extconf.rb +3 -0
- data/ext/fortio/lib/carray/autoload/autoload_fortran_format.rb +5 -0
- data/ext/fortio/lib/carray/io/fortran_format.rb +43 -0
- data/ext/fortio/lib/fortio.rb +3 -0
- data/ext/fortio/lib/fortio/fortran_format.rb +603 -0
- data/ext/fortio/lib/fortio/fortran_format.tab.rb +536 -0
- data/ext/fortio/lib/fortio/fortran_format.y +215 -0
- data/ext/fortio/lib/fortio/fortran_namelist.rb +151 -0
- data/ext/fortio/lib/fortio/fortran_namelist.tab.rb +470 -0
- data/ext/fortio/lib/fortio/fortran_namelist.y +213 -0
- data/ext/fortio/lib/fortio/fortran_sequential.rb +345 -0
- data/ext/fortio/ruby_fortio.c +182 -0
- data/ext/fortio/test/test_H.rb +5 -0
- data/ext/fortio/test/test_T.rb +7 -0
- data/ext/fortio/test/test_fortran_format.rb +86 -0
- data/ext/fortio/test/test_namelist.rb +25 -0
- data/ext/fortio/test/test_sequential.rb +13 -0
- data/ext/fortio/test/test_sequential2.rb +13 -0
- data/ext/fortio/work/test.rb +10 -0
- data/ext/fortio/work/test_e.rb +19 -0
- data/ext/fortio/work/test_ep.rb +10 -0
- data/ext/fortio/work/test_parse.rb +12 -0
- data/ext/imagemap/carray_imagemap.c +495 -0
- data/ext/imagemap/doc/call_graph.dot +28 -0
- data/ext/imagemap/draw.c +567 -0
- data/ext/imagemap/extconf.rb +13 -0
- data/ext/imagemap/lib/autoload/autoload_graphics_imagemap.rb +1 -0
- data/ext/imagemap/lib/graphics/imagemap.rb +273 -0
- data/ext/imagemap/lib/image_map.rb +4 -0
- data/ext/imagemap/test/swath_index.rb +83 -0
- data/ext/imagemap/test/swath_warp.rb +99 -0
- data/ext/imagemap/test/test.rb +23 -0
- data/ext/imagemap/test/test_image.rb +42 -0
- data/ext/imagemap/test/test_line.rb +14 -0
- data/ext/imagemap/test/test_rotate.rb +17 -0
- data/ext/imagemap/test/test_triangle.rb +20 -0
- data/ext/imagemap/test/test_warp.rb +26 -0
- data/ext/mathfunc/carray_mathfunc.c +321 -0
- data/ext/mathfunc/extconf.rb +18 -0
- data/ext/mathfunc/lib/autoload/autoload_math_mathfunc.rb +1 -0
- data/ext/mathfunc/lib/math/mathfunc.rb +15 -0
- data/ext/mathfunc/test/test_hypot.rb +5 -0
- data/ext/mathfunc/test/test_j0.rb +22 -0
- data/ext/mathfunc/test/test_jn.rb +8 -0
- data/ext/mathfunc/test/test_sph.rb +9 -0
- data/ext/narray/README +22 -0
- data/ext/narray/ca_wrap_narray.c +491 -0
- data/ext/narray/carray_narray.c +21 -0
- data/ext/narray/extconf.rb +57 -0
- data/ext/narray/lib/autoload/autoload_math_narray.rb +1 -0
- data/ext/narray/lib/autoload/autoload_math_narray_miss.rb +11 -0
- data/ext/narray/lib/math/narray.rb +17 -0
- data/ext/narray/lib/math/narray_miss.rb +45 -0
- data/extconf.rb +3 -25
- data/lib/carray.rb +28 -0
- data/lib/carray/autoload/autoload_base.rb +23 -0
- data/lib/carray/autoload/autoload_graphics_gnuplot.rb +2 -0
- data/lib/carray/autoload/autoload_io_csv.rb +14 -0
- data/lib/carray/autoload/autoload_io_excel.rb +5 -0
- data/lib/carray/autoload/autoload_io_imagemagick.rb +6 -0
- data/lib/carray/autoload/autoload_io_pg.rb +6 -0
- data/lib/carray/autoload/autoload_io_sqlite3.rb +12 -0
- data/lib/carray/autoload/autoload_io_table.rb +1 -0
- data/lib/carray/autoload/autoload_math_histogram.rb +5 -0
- data/lib/carray/autoload/autoload_math_interp.rb +4 -0
- data/lib/carray/autoload/autoload_math_recurrence.rb +6 -0
- data/lib/carray/autoload/autoload_object_iterator.rb +1 -0
- data/lib/carray/autoload/autoload_object_link.rb +1 -0
- data/lib/carray/autoload/autoload_object_pack.rb +2 -0
- data/lib/carray/base/autoload.rb +94 -0
- data/lib/carray/base/basic.rb +1051 -0
- data/lib/carray/base/inspect.rb +252 -0
- data/lib/carray/base/iterator.rb +367 -0
- data/lib/carray/base/math.rb +403 -0
- data/lib/carray/base/obsolete.rb +93 -0
- data/lib/carray/base/serialize.rb +260 -0
- data/lib/carray/base/struct.rb +634 -0
- data/lib/carray/graphics/gnuplot.rb +2116 -0
- data/lib/carray/info.rb +112 -0
- data/lib/carray/io/csv.rb +560 -0
- data/lib/carray/io/excel.rb +26 -0
- data/lib/carray/io/imagemagick.rb +231 -0
- data/lib/carray/io/pg.rb +101 -0
- data/lib/carray/io/sqlite3.rb +202 -0
- data/lib/carray/io/table.rb +77 -0
- data/lib/carray/math/histogram.rb +179 -0
- data/lib/carray/math/interp.rb +57 -0
- data/lib/carray/math/interp/adapter_gsl_spline.rb +47 -0
- data/lib/carray/math/recurrence.rb +95 -0
- data/lib/carray/mkmf.rb +145 -0
- data/lib/carray/object/ca_obj_iterator.rb +52 -0
- data/lib/carray/object/ca_obj_link.rb +52 -0
- data/lib/carray/object/ca_obj_pack.rb +101 -0
- data/mkmath.rb +731 -0
- data/mt19937ar.c +182 -0
- data/mt19937ar.h +86 -0
- data/rdoc_main.rb +27 -0
- data/rdoc_math.rb +5 -0
- data/rdoc_stat.rb +31 -0
- data/ruby_carray.c +242 -0
- data/ruby_ccomplex.c +497 -0
- data/ruby_float_func.c +83 -0
- data/spec/CABlockIterator/CABlockIterator_spec.rb +113 -0
- data/spec/CArray/bug/store_spec.rb +27 -0
- data/spec/CArray/index/repeat_spec.rb +10 -0
- data/spec/CArray/method/eq_spec.rb +80 -0
- data/spec/CArray/method/is_nan_spec.rb +12 -0
- data/spec/CArray/method/ne_spec.rb +18 -0
- data/spec/CArray/method/round_spec.rb +11 -0
- data/spec/CArray/object/_attribute_spec.rb +32 -0
- data/spec/CArray/object/s_new_spec.rb +31 -0
- data/spec/CArray/serialize/Serialization_spec.rb +89 -0
- data/spec/spec_all.rb +11 -0
- data/test/test_ALL.rb +50 -0
- data/test/test_CABitfield.rb +59 -0
- data/test/test_CABlock.rb +208 -0
- data/test/test_CAField.rb +40 -0
- data/test/test_CAGrid.rb +76 -0
- data/test/test_CAMapping.rb +106 -0
- data/test/test_CAMmap.rb +11 -0
- data/test/test_CARefer.rb +94 -0
- data/test/test_CARepeat.rb +66 -0
- data/test/test_CASelect.rb +23 -0
- data/test/test_CAShift.rb +17 -0
- data/test/test_CATranspose.rb +61 -0
- data/test/test_CAVirtual.rb +214 -0
- data/test/test_CAWindow.rb +55 -0
- data/test/test_CAWrap.rb +9 -0
- data/test/test_CArray.rb +228 -0
- data/test/test_CComplex.rb +83 -0
- data/test/test_CScalar.rb +91 -0
- data/test/test_attribute.rb +281 -0
- data/test/test_block_iterator.rb +17 -0
- data/test/test_boolean.rb +99 -0
- data/test/test_cast.rb +33 -0
- data/test/test_class.rb +85 -0
- data/test/test_complex.rb +43 -0
- data/test/test_composite.rb +125 -0
- data/test/test_convert.rb +79 -0
- data/test/test_copy.rb +141 -0
- data/test/test_creation.rb +85 -0
- data/test/test_element.rb +146 -0
- data/test/test_extream.rb +55 -0
- data/test/test_generate.rb +75 -0
- data/test/test_index.rb +71 -0
- data/test/test_mask.rb +578 -0
- data/test/test_math.rb +98 -0
- data/test/test_narray.rb +64 -0
- data/test/test_order.rb +147 -0
- data/test/test_random.rb +15 -0
- data/test/test_ref_store.rb +211 -0
- data/test/test_stat.rb +414 -0
- data/test/test_struct.rb +72 -0
- data/test/test_virtual.rb +49 -0
- data/utils/ca_ase.rb +21 -0
- data/utils/ca_methods.rb +15 -0
- data/utils/cast_checker.rb +30 -0
- data/utils/create_rdoc.sh +9 -0
- data/utils/diff_method.rb +52 -0
- data/utils/extract_rdoc.rb +27 -0
- data/utils/make_tgz.sh +3 -0
- data/utils/remove_resource_fork.sh +5 -0
- data/version.h +3 -3
- metadata +266 -1
@@ -0,0 +1,182 @@
|
|
1
|
+
/* ---------------------------------------------------------------------------
|
2
|
+
|
3
|
+
carray/carray_fortio.c
|
4
|
+
|
5
|
+
This file is part of Ruby/CArray extension library.
|
6
|
+
You can redistribute it and/or modify it under the terms of
|
7
|
+
the Ruby Licence.
|
8
|
+
|
9
|
+
Copyright (C) 2005 Hiroki Motoyoshi
|
10
|
+
|
11
|
+
---------------------------------------------------------------------------- */
|
12
|
+
|
13
|
+
#include "ruby.h"
|
14
|
+
#include <math.h>
|
15
|
+
|
16
|
+
static int
|
17
|
+
read_F (char *buf, int buflen, int scale, int length, int prec, double *a)
|
18
|
+
{
|
19
|
+
char fmt[128];
|
20
|
+
int status;
|
21
|
+
if ( ! strchr(buf, '.') ) {
|
22
|
+
int tmp = 0;
|
23
|
+
snprintf(fmt, 128, "%%%i", length);
|
24
|
+
status = sscanf(buf, fmt, &tmp);
|
25
|
+
*a = tmp * pow(10, -prec);
|
26
|
+
}
|
27
|
+
else {
|
28
|
+
snprintf(fmt, 128, "%%%i.%if", length, prec);
|
29
|
+
status = sscanf(buf, fmt, a);
|
30
|
+
}
|
31
|
+
return status;
|
32
|
+
}
|
33
|
+
|
34
|
+
static VALUE
|
35
|
+
rb_ff_read_F (VALUE mod, VALUE vbuffer, VALUE vscale, VALUE vlength, VALUE vprec)
|
36
|
+
{
|
37
|
+
double val;
|
38
|
+
int status;
|
39
|
+
status = read_F(StringValuePtr(vbuffer), RSTRING_LEN(vbuffer),
|
40
|
+
NUM2INT(vscale), NUM2INT(vlength), NUM2INT(vprec), &val);
|
41
|
+
if ( ! status ) {
|
42
|
+
rb_raise(rb_eRuntimeError, "invalid string for F descriptor");
|
43
|
+
}
|
44
|
+
return rb_float_new(val);
|
45
|
+
}
|
46
|
+
|
47
|
+
static int
|
48
|
+
write_F (char *buf, int buflen, int plus, int scale, int length, int prec, double a)
|
49
|
+
{
|
50
|
+
char fmt[128];
|
51
|
+
if ( plus ) {
|
52
|
+
snprintf(fmt, 128, "%%+%i.%if", length, prec);
|
53
|
+
}
|
54
|
+
else {
|
55
|
+
snprintf(fmt, 128, "%%%i.%if", length, prec);
|
56
|
+
}
|
57
|
+
if ( scale == 0 ) {
|
58
|
+
return snprintf(buf, buflen, fmt, a);
|
59
|
+
}
|
60
|
+
else {
|
61
|
+
return snprintf(buf, buflen, fmt, a * pow(10, scale));
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
static VALUE
|
66
|
+
rb_ff_write_F (VALUE mod, VALUE vsign, VALUE vscale, VALUE vlength, VALUE vprec, VALUE va)
|
67
|
+
{
|
68
|
+
int length = NUM2INT(vlength);
|
69
|
+
char buf[256];
|
70
|
+
if ( length > 255 ) {
|
71
|
+
rb_raise(rb_eRuntimeError, "too long decimal format for FortranFormat");
|
72
|
+
}
|
73
|
+
write_F(buf, 255,
|
74
|
+
RTEST(vsign), NUM2INT(vscale), length, NUM2INT(vprec), NUM2DBL(va));
|
75
|
+
return rb_str_new2(buf);
|
76
|
+
}
|
77
|
+
|
78
|
+
|
79
|
+
static int
|
80
|
+
write_E (char *buf, int buflen, int plus, int scale, int length, int prec, int iexp, double a)
|
81
|
+
{
|
82
|
+
char fmt[128];
|
83
|
+
int prec0;
|
84
|
+
int e, sign = 1;
|
85
|
+
prec0 = ( 1 - scale < 0 ) ? prec - scale + 1 : prec;
|
86
|
+
sign = 1;
|
87
|
+
if ( a < 0 ) {
|
88
|
+
e = floor(log10(-a))+1;
|
89
|
+
sign = -1;
|
90
|
+
}
|
91
|
+
if ( a > 0 ) {
|
92
|
+
e = floor(log10(a))+1;
|
93
|
+
}
|
94
|
+
else {
|
95
|
+
e = 0;
|
96
|
+
}
|
97
|
+
if ( prec0 == 0 ) {
|
98
|
+
if ( plus ) {
|
99
|
+
snprintf(fmt, 128, "%%+%i.0f.E%%+0%ii", length-iexp-3, iexp+1);
|
100
|
+
}
|
101
|
+
else {
|
102
|
+
snprintf(fmt, 128, "%%%i.0f.E%%+0%ii", length-iexp-3, iexp+1);
|
103
|
+
}
|
104
|
+
}
|
105
|
+
else {
|
106
|
+
if ( plus ) {
|
107
|
+
snprintf(fmt, 128, "%%+%i.%ifE%%+0%ii", length-iexp-2, prec0, iexp+1);
|
108
|
+
}
|
109
|
+
else {
|
110
|
+
snprintf(fmt, 128, "%%%i.%ifE%%+0%ii", length-iexp-2, prec0, iexp+1);
|
111
|
+
}
|
112
|
+
}
|
113
|
+
return snprintf(buf, buflen, fmt, sign * a * pow(10,scale-e), e-scale);
|
114
|
+
}
|
115
|
+
|
116
|
+
static VALUE
|
117
|
+
rb_ff_write_E (VALUE mod, VALUE vsign, VALUE vscale, VALUE vlength, VALUE vprec, VALUE vexp, VALUE va)
|
118
|
+
{
|
119
|
+
int length = NUM2INT(vlength);
|
120
|
+
int iexp = NIL_P(vexp) ? 2 : NUM2INT(vexp);
|
121
|
+
char buf[256];
|
122
|
+
if ( length > 255 ) {
|
123
|
+
rb_raise(rb_eRuntimeError, "too long decimal format for FortranFormat");
|
124
|
+
}
|
125
|
+
write_E(buf, 255,
|
126
|
+
RTEST(vsign), NUM2INT(vscale), length, NUM2INT(vprec), iexp, NUM2DBL(va));
|
127
|
+
return rb_str_new2(buf);
|
128
|
+
}
|
129
|
+
|
130
|
+
static int
|
131
|
+
write_GF (char *buf, int buflen, int plus, int length, int prec, int iexp, double a)
|
132
|
+
{
|
133
|
+
int e;
|
134
|
+
if ( a < 0 ) {
|
135
|
+
e = floor(log10(-a))+1;
|
136
|
+
}
|
137
|
+
if ( a > 0 ) {
|
138
|
+
e = floor(log10(a))+1;
|
139
|
+
}
|
140
|
+
else {
|
141
|
+
e = 0;
|
142
|
+
}
|
143
|
+
write_E(buf, 255, plus, e, length, prec-1, iexp, a);
|
144
|
+
memset(buf+(length-iexp-2), ' ', iexp+2);
|
145
|
+
return 1;
|
146
|
+
}
|
147
|
+
|
148
|
+
static VALUE
|
149
|
+
rb_ff_write_G (VALUE mod, VALUE vsign, VALUE vscale, VALUE vlength, VALUE vprec, VALUE vexp, VALUE va)
|
150
|
+
{
|
151
|
+
int length = NUM2INT(vlength);
|
152
|
+
int iprec = NUM2INT(vprec);
|
153
|
+
int iexp = NIL_P(vexp) ? 2 : NUM2INT(vexp);
|
154
|
+
double val = NUM2DBL(va);
|
155
|
+
char buf[256];
|
156
|
+
if ( length > 255 ) {
|
157
|
+
rb_raise(rb_eRuntimeError, "too long decimal format for FortranFormat");
|
158
|
+
}
|
159
|
+
if ( ( fabs(val) <= 0.1 ) ||
|
160
|
+
( fabs(val) >= pow(10, iprec) ) ) {
|
161
|
+
write_E(buf, 255,
|
162
|
+
RTEST(vsign), NUM2INT(vscale), length, iprec, iexp, val);
|
163
|
+
}
|
164
|
+
else {
|
165
|
+
write_GF(buf, 255, RTEST(vsign), length, iprec, iexp, val);
|
166
|
+
}
|
167
|
+
return rb_str_new2(buf);
|
168
|
+
}
|
169
|
+
|
170
|
+
void
|
171
|
+
Init_fortio_ext ()
|
172
|
+
{
|
173
|
+
VALUE rb_cFF = rb_define_class("FortranFormat", rb_cObject);
|
174
|
+
rb_define_singleton_method(rb_cFF, "read_F", rb_ff_read_F, 4);
|
175
|
+
rb_define_singleton_method(rb_cFF, "write_F", rb_ff_write_F, 5);
|
176
|
+
rb_define_singleton_method(rb_cFF, "write_E", rb_ff_write_E, 6);
|
177
|
+
rb_define_singleton_method(rb_cFF, "write_G", rb_ff_write_G, 6);
|
178
|
+
}
|
179
|
+
|
180
|
+
|
181
|
+
|
182
|
+
|
@@ -0,0 +1,86 @@
|
|
1
|
+
require 'fortio'
|
2
|
+
|
3
|
+
include Math
|
4
|
+
|
5
|
+
#F77 = "ifort"
|
6
|
+
F77 = "gfortran"
|
7
|
+
#F77 = "g95"
|
8
|
+
#F77 = "g77"
|
9
|
+
|
10
|
+
def f77_compile_and_run (source)
|
11
|
+
output = nil
|
12
|
+
begin
|
13
|
+
open("test.f", "w") { |io|
|
14
|
+
io.write(source)
|
15
|
+
}
|
16
|
+
system("#{F77} test.f")
|
17
|
+
output = `./a.out`.chomp
|
18
|
+
ensure
|
19
|
+
File.unlink("test.f")
|
20
|
+
File.unlink("a.out")
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
[
|
25
|
+
["F12.3", 10.0, nil],
|
26
|
+
["2F12.3", [10.0,11.0], nil],
|
27
|
+
["E12.2", 10.0, nil],
|
28
|
+
["2E12.2", [10.0,11.0], nil],
|
29
|
+
["2PE12.2", 10.0, nil],
|
30
|
+
["2P2E12.2", [10.0,11.0], nil],
|
31
|
+
["2G12.2", [10.0,11.0], nil],
|
32
|
+
["2PG12.2", 10.0, nil],
|
33
|
+
["2PG12.2E3",10.0, nil],
|
34
|
+
["2PG12.2", 1234567890.0, nil],
|
35
|
+
["2PG12.2E3",1234567890.0, nil],
|
36
|
+
# ---
|
37
|
+
["F15.8", PI, "#{PI}D0"],
|
38
|
+
["E15.8", PI, "#{PI}D0"],
|
39
|
+
["2PE15.8", PI, "#{PI}D0"],
|
40
|
+
# ---
|
41
|
+
["F10.8", PI, "#{PI}D0"],
|
42
|
+
["E10.8", PI, "#{PI}D0"],
|
43
|
+
["2PE10.8", PI, "#{PI}D0"],
|
44
|
+
# ---
|
45
|
+
["I4.3", 123456, nil],
|
46
|
+
["I6.5", 123, nil],
|
47
|
+
["I6.5", 123, nil],
|
48
|
+
["I7.6", 123456, nil],
|
49
|
+
["I6", 123456, nil],
|
50
|
+
# ---
|
51
|
+
["SPI6", 123456, nil],
|
52
|
+
["SPI7", 123456, nil],
|
53
|
+
["SPF12.4", 123456.0, nil],
|
54
|
+
["SPE12.4E3", 123456.0, nil],
|
55
|
+
["SPG12.4E3", 123456.0, nil],
|
56
|
+
["SPG12.4E3", 123.0, nil],
|
57
|
+
["TR2SPSG12.4E3", 123.0, nil],
|
58
|
+
# ---
|
59
|
+
["L1", true, ".TRUE."],
|
60
|
+
["L1", false, ".FALSE."],
|
61
|
+
["L2", true, ".TRUE."],
|
62
|
+
["L2", false, ".FALSE."],
|
63
|
+
["L4", true, ".TRUE."],
|
64
|
+
["L4", false, ".FALSE."],
|
65
|
+
# ---
|
66
|
+
["A1", "a", "'a'"],
|
67
|
+
["A2", "ab", "'ab'"],
|
68
|
+
["5Hhello", nil, nil],
|
69
|
+
# ---
|
70
|
+
["/", "\n", ""],
|
71
|
+
["2/", "\n\n", ""],
|
72
|
+
].each do |fmt, rval, fval|
|
73
|
+
fort_out = f77_compile_and_run %{
|
74
|
+
write(6, '(#{fmt})') #{[fval||rval||[]].flatten.join(',')}
|
75
|
+
end
|
76
|
+
}
|
77
|
+
ruby_out = fortran_format(fmt+"$", *rval)
|
78
|
+
puts "-------------------------------------------------------------"
|
79
|
+
printf("format : %s\n", fmt)
|
80
|
+
printf("fortran input : %s\n", [fval||rval].flatten.join(','))
|
81
|
+
printf("ruby input : %s\n", [rval].flatten.join(","))
|
82
|
+
printf("fortran output : %s\n", fort_out.inspect)
|
83
|
+
printf("ruby output : %s\n", ruby_out.inspect)
|
84
|
+
printf("comparison : %s\n", fort_out == ruby_out)
|
85
|
+
end
|
86
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require "fortio"
|
2
|
+
require "pp"
|
3
|
+
|
4
|
+
text =<<END
|
5
|
+
aaaa bbbb cccc
|
6
|
+
dddd eeee ffff
|
7
|
+
&name
|
8
|
+
c=30.d0,
|
9
|
+
a=10.d0,
|
10
|
+
b=20.d0,
|
11
|
+
d(1:3) = 1,2,3
|
12
|
+
&end
|
13
|
+
&foo
|
14
|
+
c=10.d+32,
|
15
|
+
a=50.d0,
|
16
|
+
b=90.d0,
|
17
|
+
d(1:5) = 3*4,,3
|
18
|
+
e="hello""world!"
|
19
|
+
&end
|
20
|
+
END
|
21
|
+
|
22
|
+
pp nml = fortran_namelist_read(text, "name", {:d=>CArray.int(3)})
|
23
|
+
pp nml = fortran_namelist_read(text, "foo", {:d=>CArray.int(5)})
|
24
|
+
|
25
|
+
puts fortran_namelist("bar", nml)
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require "fortio"
|
2
|
+
|
3
|
+
fs = FortranSequential.open("test.dat", "w", :endian=>"big")
|
4
|
+
rec = fs.record
|
5
|
+
rec.write("d4l", [1.2, 2008, 6, 21, 9])
|
6
|
+
fs.close
|
7
|
+
|
8
|
+
fs = FortranSequential.open("test.dat", "r", :endian=>"big")
|
9
|
+
rec = fs.record
|
10
|
+
p rec.read("d4l")
|
11
|
+
fs.close
|
12
|
+
|
13
|
+
File.unlink("test.dat")
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require "fortio"
|
2
|
+
|
3
|
+
p f = FortranFormat("4(2P,3E6.2E4,2I2.1)$")
|
4
|
+
p f.count_args
|
5
|
+
p fortran_format("2P,E10.2E4,$", 0.000012345)
|
6
|
+
p f = FortranFormat("2(E10.2E4,',')")
|
7
|
+
p fortran_format("2(E10.2E4,',')", 0.000012345, 2.0)
|
8
|
+
p f = FortranFormat('2(-2PG15.5 4X2(I2)/)')
|
9
|
+
puts fortran_format(f, 3.1415926,2,4, 2.71828,3,5)
|
10
|
+
|
11
|
+
p f = FortranFormat('3P,4(G15.5/)')
|
12
|
+
p f.count_args
|
13
|
+
puts fortran_format(f, 0.1, 0.11, 10**5-1, 10**5)
|
14
|
+
|
15
|
+
p f = FortranFormat('A10,"""\'|\'"""')
|
16
|
+
p f.count_args
|
17
|
+
puts fortran_format(f, "hello")
|
18
|
+
|
19
|
+
puts fortran_format_read("12345", "F5.2")
|
@@ -0,0 +1,10 @@
|
|
1
|
+
require "fortio"
|
2
|
+
|
3
|
+
fmt200 = FortranFormat.new("(3pe13.6,-2p2e13.6)")
|
4
|
+
|
5
|
+
p fortran_format_write("", fmt200, *[0.000123456]*3)
|
6
|
+
|
7
|
+
p text = fortran_format_write("", "3pf10.5", 3)
|
8
|
+
p fortran_format_read(text, "3pf10.5")
|
9
|
+
|
10
|
+
p fortran_format_write("", "g13.5", 893)
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require "carray"
|
2
|
+
require "fortio"
|
3
|
+
|
4
|
+
head = " 1440 721 0.00 90.00 0.2500 31 0.18712E+00 0.44215E-01 0.35660E-01 0.30406E-01 0.34569E-01 0.17713E-01 0.25666E-01 0.26762E-01 0.10912E-01 0.10623E-01 0.62775E-02 0.66029E-02 0.11870E+00 0.47465E-02 0.86580E-01 0.33813E-02 0.10799E+00 0.22265E-02 0.76236E-01 0.65007E-01 0.51308E-01 0.58308E-01 0.43458E-01 0.21357E-01 0.89651E-02 0.10000E-01 0.10000E-01 0.10000E-01 0.10000E-01 0.10000E-02 0.10000E+01"
|
5
|
+
|
6
|
+
ffp = FortranFormat.new('2X,2i6,2f8.2,f8.4,i3,31e12.5')
|
7
|
+
p list = ffp.read(head)
|
8
|
+
ffp.write(test="", *list)
|
9
|
+
|
10
|
+
p head
|
11
|
+
p test
|
12
|
+
p head == test
|
@@ -0,0 +1,495 @@
|
|
1
|
+
/* ---------------------------------------------------------------------------
|
2
|
+
|
3
|
+
carray/carray_imagemap.c
|
4
|
+
|
5
|
+
This file is part of Ruby/CArray extension library.
|
6
|
+
You can redistribute it and/or modify it under the terms of
|
7
|
+
the Ruby Licence.
|
8
|
+
|
9
|
+
Copyright (C) 2005 Hiroki Motoyoshi
|
10
|
+
|
11
|
+
---------------------------------------------------------------------------- */
|
12
|
+
|
13
|
+
#include "carray.h"
|
14
|
+
#include <math.h>
|
15
|
+
|
16
|
+
#define ca_ptr_1d(ap, i) \
|
17
|
+
ca_ptr_at_addr((ap), (i))
|
18
|
+
#define ca_ptr_2d(ap, i, j) \
|
19
|
+
ca_ptr_at_addr((ap), ((CArray*)(ap))->dim[1]*(i) + (j))
|
20
|
+
#define ca_ptr_3d(ap, i, j, k) \
|
21
|
+
ca_ptr_at_addr(ap, \
|
22
|
+
((CArray*)(ap))->dim[2]*( ((CArray*)(ap))->dim[1]*(i) + (j) ) + (k))
|
23
|
+
|
24
|
+
#define ca_ref_1d(type, ap, i) \
|
25
|
+
(*(type*) ca_ptr_at_addr((ap), (i)))
|
26
|
+
#define ca_ref_2d(type, ap, i, j) \
|
27
|
+
(*(type*) ca_ptr_at_addr((ap), ((CArray*)(ap))->dim[1]*(i) + (j)))
|
28
|
+
#define ca_ref_3d(type, ap, i, j, k) \
|
29
|
+
(*(type*) ca_ptr_at_addr(ap, \
|
30
|
+
((CArray*)(ap))->dim[2]*( ((CArray*)(ap))->dim[1]*(i) + (j) ) + (k)))
|
31
|
+
|
32
|
+
#define CA_REF(ca, i, j) ca_ref_2d(int8_t, (ca), (i), (j))
|
33
|
+
|
34
|
+
#define round(x) (int)(((x)>0) ? floor((x)+0.5) : ((x)<0) ? ceil((x)-0.5) : 0)
|
35
|
+
|
36
|
+
static void
|
37
|
+
draw_linex (CArray *ca, float x0, float y0, float x1, float y1, char *ptr)
|
38
|
+
{
|
39
|
+
float x, y;
|
40
|
+
int ix, iy;
|
41
|
+
int dim0 = ca->dim[0];
|
42
|
+
int dim1 = ca->dim[1];
|
43
|
+
float a = (y1-y0)/(x1-x0);
|
44
|
+
for (x=x0; x<x1; x+=1) {
|
45
|
+
y = a*(x-x0)+y0;
|
46
|
+
ix = round(x);
|
47
|
+
iy = round(y);
|
48
|
+
if ( ix < 0 || ix >= dim0 || iy < 0 || iy >= dim1 ) {
|
49
|
+
continue;
|
50
|
+
}
|
51
|
+
memcpy(ca_ptr_2d(ca, ix, iy), ptr, ca->bytes);
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
static void
|
56
|
+
draw_liney (CArray *ca, float x0, float y0, float x1, float y1, char *ptr)
|
57
|
+
{
|
58
|
+
float x, y;
|
59
|
+
int ix, iy;
|
60
|
+
int dim0 = ca->dim[0];
|
61
|
+
int dim1 = ca->dim[1];
|
62
|
+
float a = (x1-x0)/(y1-y0);
|
63
|
+
for (y=y0; y<y1; y+=1) {
|
64
|
+
x = a*(y-y0)+x0;
|
65
|
+
ix = round(x);
|
66
|
+
iy = round(y);
|
67
|
+
if ( ix < 0 || ix >= dim0 || iy < 0 || iy >= dim1 ) {
|
68
|
+
continue;
|
69
|
+
}
|
70
|
+
memcpy(ca_ptr_2d(ca, ix, iy), ptr, ca->bytes);
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
void
|
75
|
+
draw_line (CArray *ca, float x0, float y0, float x1, float y1, char *ptr)
|
76
|
+
{
|
77
|
+
if ( fabs(y1-y0) < fabs(x1-x0) ) {
|
78
|
+
if ( x1 > x0 ) {
|
79
|
+
draw_linex(ca, x0, y0, x1, y1, ptr);
|
80
|
+
}
|
81
|
+
else if ( x1 < x0 ) {
|
82
|
+
draw_linex(ca, x1, y1, x0, y0, ptr);
|
83
|
+
}
|
84
|
+
}
|
85
|
+
else {
|
86
|
+
if ( y1 > y0 ) {
|
87
|
+
draw_liney(ca, x0, y0, x1, y1, ptr);
|
88
|
+
}
|
89
|
+
else if ( y1 < y0 ) {
|
90
|
+
draw_liney(ca, x1, y1, x0, y0, ptr);
|
91
|
+
}
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
static VALUE
|
96
|
+
rb_img_draw_line (VALUE self,
|
97
|
+
VALUE vx0, VALUE vy0, VALUE vx1, VALUE vy1, volatile VALUE vz)
|
98
|
+
{
|
99
|
+
CArray *ca, *cz;
|
100
|
+
|
101
|
+
Data_Get_Struct(self, CArray, ca);
|
102
|
+
cz = ca_wrap_readonly(vz, ca->data_type);
|
103
|
+
|
104
|
+
ca_attach(ca);
|
105
|
+
|
106
|
+
draw_line(ca, NUM2DBL(vx0), NUM2DBL(vy0), NUM2DBL(vx1), NUM2DBL(vy1), cz->ptr);
|
107
|
+
|
108
|
+
ca_detach(ca);
|
109
|
+
|
110
|
+
return Qnil;
|
111
|
+
}
|
112
|
+
|
113
|
+
/*
|
114
|
+
def self.fill_rect2(image, x, y, val)
|
115
|
+
xmin, xmax = x.min, x.max
|
116
|
+
ymin, ymax = y.min, y.max
|
117
|
+
img = CArray.int8(xmax.round-xmin.round+1, ymax.round-ymin.round+1) { 0 }
|
118
|
+
if (xmax + img.dim0 >= image.dim0 ) or
|
119
|
+
(xmin < 0 ) or
|
120
|
+
(ymax + img.dim1 >= image.dim1) or
|
121
|
+
(ymin < 0)
|
122
|
+
return
|
123
|
+
end
|
124
|
+
subimg = image[[xmin.round,img.dim0],[ymin.round,img.dim1]]
|
125
|
+
gx = x-xmin.round
|
126
|
+
gy = y-ymin.round
|
127
|
+
img.draw_box(gx, gy)
|
128
|
+
img.fill_out()
|
129
|
+
subimg[img] = val
|
130
|
+
end
|
131
|
+
*/
|
132
|
+
|
133
|
+
static void
|
134
|
+
fill_rect (CArray *image, float x[4], float y[4], char *ptr)
|
135
|
+
{
|
136
|
+
CArray *mask;
|
137
|
+
float xmin, xmax, ymin, ymax;
|
138
|
+
float gx[4], gy[4];
|
139
|
+
int32_t dim[2];
|
140
|
+
int32_t i, j, ixmin, iymin, ixmax, iymax;
|
141
|
+
char one = 1;
|
142
|
+
|
143
|
+
xmin = x[0];
|
144
|
+
xmax = x[0];
|
145
|
+
ymin = y[0];
|
146
|
+
ymax = y[0];
|
147
|
+
|
148
|
+
for (i=1; i<4; i++) {
|
149
|
+
if ( isnan(x[i]) || isnan(y[i]) )
|
150
|
+
return;
|
151
|
+
if ( x[i] < xmin ) {
|
152
|
+
xmin = x[i];
|
153
|
+
}
|
154
|
+
if ( x[i] > xmax ) {
|
155
|
+
xmax = x[i];
|
156
|
+
}
|
157
|
+
if ( y[i] < ymin ) {
|
158
|
+
ymin = y[i];
|
159
|
+
}
|
160
|
+
if ( y[i] > ymax ) {
|
161
|
+
ymax = y[i];
|
162
|
+
}
|
163
|
+
}
|
164
|
+
|
165
|
+
ixmin = (int32_t) floor(xmin);
|
166
|
+
iymin = (int32_t) floor(ymin);
|
167
|
+
|
168
|
+
ixmax = (int32_t) ceil(xmax) + 1;
|
169
|
+
iymax = (int32_t) ceil(ymax) + 1;
|
170
|
+
|
171
|
+
dim[0] = ixmax - ixmin + 1;
|
172
|
+
dim[1] = iymax - iymin + 1;
|
173
|
+
|
174
|
+
mask = carray_new(CA_BOOLEAN, 2, dim, 0, NULL);
|
175
|
+
memset(mask->ptr, 0, mask->elements);
|
176
|
+
|
177
|
+
for (i=0; i<4; i++) {
|
178
|
+
gx[i] = x[i] - ixmin + 1;
|
179
|
+
gy[i] = y[i] - iymin + 1;
|
180
|
+
}
|
181
|
+
|
182
|
+
draw_line(mask, gx[0], gy[0], gx[1], gy[1], &one);
|
183
|
+
draw_line(mask, gx[1], gy[1], gx[3], gy[3], &one);
|
184
|
+
draw_line(mask, gx[3], gy[3], gx[2], gy[2], &one);
|
185
|
+
draw_line(mask, gx[2], gy[2], gx[0], gy[0], &one);
|
186
|
+
|
187
|
+
for (i=0; i<dim[0]; i++) {
|
188
|
+
for (j=0; j<dim[1]; j++) {
|
189
|
+
if ( CA_REF(mask,i,j) ) {
|
190
|
+
break;
|
191
|
+
}
|
192
|
+
CA_REF(mask,i,j) = -1;
|
193
|
+
}
|
194
|
+
for (j=dim[1]-1; j>=0; j--) {
|
195
|
+
if ( CA_REF(mask,i,j) ) {
|
196
|
+
break;
|
197
|
+
}
|
198
|
+
CA_REF(mask,i,j) = -1;
|
199
|
+
}
|
200
|
+
}
|
201
|
+
|
202
|
+
for (i=0; i<dim[0]; i++) {
|
203
|
+
if ( ixmin+i < 0 || ixmin+i >= image->dim[0] )
|
204
|
+
continue;
|
205
|
+
for (j=0; j<dim[1]; j++)
|
206
|
+
if ( CA_REF(mask,i,j) >= 0 ) {
|
207
|
+
if ( iymin+j < 0 || iymin+j >= image->dim[1] ) {
|
208
|
+
continue;
|
209
|
+
}
|
210
|
+
memcpy(ca_ptr_2d(image, ixmin+i, iymin+j), ptr, image->bytes);
|
211
|
+
}
|
212
|
+
}
|
213
|
+
|
214
|
+
ca_free(mask);
|
215
|
+
}
|
216
|
+
|
217
|
+
|
218
|
+
static VALUE
|
219
|
+
rb_im_fill_rect (VALUE self,
|
220
|
+
VALUE vimg,
|
221
|
+
volatile VALUE vx, volatile VALUE vy, volatile VALUE vval)
|
222
|
+
{
|
223
|
+
CArray *image, *val, *cx, *cy;
|
224
|
+
|
225
|
+
Data_Get_Struct(vimg, CArray, image);
|
226
|
+
Data_Get_Struct(vx, CArray, cx);
|
227
|
+
Data_Get_Struct(vy, CArray, cy);
|
228
|
+
|
229
|
+
cx = ca_wrap_readonly(vx, CA_FLOAT);
|
230
|
+
cy = ca_wrap_readonly(vy, CA_FLOAT);
|
231
|
+
val = ca_wrap_readonly(vval, image->data_type);
|
232
|
+
|
233
|
+
ca_attach_n(3, cx, cy, val);
|
234
|
+
|
235
|
+
fill_rect(image, (float*)cx->ptr, (float*)cy->ptr, val->ptr);
|
236
|
+
|
237
|
+
ca_detach_n(3, cx, cy, val);
|
238
|
+
|
239
|
+
return Qnil;
|
240
|
+
}
|
241
|
+
|
242
|
+
void
|
243
|
+
draw_hline_gradation (CArray *image, int iy,
|
244
|
+
float x0, float x1, float z0, float z1);
|
245
|
+
|
246
|
+
static VALUE
|
247
|
+
rb_img_draw_hline_gradation (VALUE self, VALUE viy,
|
248
|
+
VALUE vx0, VALUE vx1, VALUE vz0, VALUE vz1)
|
249
|
+
{
|
250
|
+
CArray *image;
|
251
|
+
|
252
|
+
Data_Get_Struct(self, CArray, image);
|
253
|
+
|
254
|
+
draw_hline_gradation(image, NUM2INT(viy),
|
255
|
+
NUM2DBL(vx0), NUM2DBL(vx1), NUM2DBL(vz0), NUM2DBL(vz1));
|
256
|
+
|
257
|
+
return Qnil;
|
258
|
+
}
|
259
|
+
|
260
|
+
void
|
261
|
+
draw_triangle_gradation (CArray *image, float y[3], float x[3], float z[3]);
|
262
|
+
|
263
|
+
static VALUE
|
264
|
+
rb_img_draw_triangle_gradation (VALUE self,
|
265
|
+
VALUE vy, VALUE vx, VALUE vz)
|
266
|
+
{
|
267
|
+
CArray *image;
|
268
|
+
float y[3], x[3], z[3];
|
269
|
+
int i;
|
270
|
+
|
271
|
+
Data_Get_Struct(self, CArray, image);
|
272
|
+
|
273
|
+
for (i=0; i<3; i++) {
|
274
|
+
y[i] = NUM2DBL(rb_ary_entry(vy, i));
|
275
|
+
x[i] = NUM2DBL(rb_ary_entry(vx, i));
|
276
|
+
z[i] = NUM2DBL(rb_ary_entry(vz, i));
|
277
|
+
}
|
278
|
+
|
279
|
+
draw_triangle_gradation(image, y, x, z);
|
280
|
+
|
281
|
+
return Qnil;
|
282
|
+
}
|
283
|
+
|
284
|
+
void
|
285
|
+
fill_rectangle (CArray *image, float y[4], float x[4], char *ptr);
|
286
|
+
|
287
|
+
static VALUE
|
288
|
+
rb_img_fill_rectangle (VALUE self,
|
289
|
+
volatile VALUE vy, volatile VALUE vx, volatile VALUE vz)
|
290
|
+
{
|
291
|
+
CArray *image, *cy, *cx, *cz;
|
292
|
+
|
293
|
+
Data_Get_Struct(self, CArray, image);
|
294
|
+
|
295
|
+
cy = ca_wrap_readonly(vy, CA_FLOAT);
|
296
|
+
cx = ca_wrap_readonly(vx, CA_FLOAT);
|
297
|
+
cz = ca_wrap_readonly(vz, image->data_type);
|
298
|
+
|
299
|
+
if ( cy->elements != 4 || cx->elements != 4 ) {
|
300
|
+
rb_raise(rb_eRuntimeError, "invalid size of y or x");
|
301
|
+
}
|
302
|
+
|
303
|
+
ca_attach_n(4, image, cy, cx, cz);
|
304
|
+
|
305
|
+
fill_rectangle(image, (float*)cy->ptr, (float*)cx->ptr, cz->ptr);
|
306
|
+
|
307
|
+
ca_detach_n(4, image, cy, cx, cz);
|
308
|
+
|
309
|
+
return Qnil;
|
310
|
+
}
|
311
|
+
|
312
|
+
void
|
313
|
+
fill_rectangle_image (CArray *image, CArray *cy, CArray *cx, CArray *cv);
|
314
|
+
|
315
|
+
static VALUE
|
316
|
+
rb_img_fill_rectangle_image (VALUE self,
|
317
|
+
volatile VALUE vy, volatile VALUE vx, volatile VALUE vz)
|
318
|
+
{
|
319
|
+
CArray *image, *cy, *cx, *cz;
|
320
|
+
|
321
|
+
Data_Get_Struct(self, CArray, image);
|
322
|
+
|
323
|
+
cy = ca_wrap_readonly(vy, CA_FLOAT);
|
324
|
+
cx = ca_wrap_readonly(vx, CA_FLOAT);
|
325
|
+
cz = ca_wrap_readonly(vz, image->data_type);
|
326
|
+
|
327
|
+
ca_attach_n(4, image, cy, cx, cz);
|
328
|
+
|
329
|
+
fill_rectangle_image(image, cy, cx, cz);
|
330
|
+
|
331
|
+
ca_sync(image);
|
332
|
+
|
333
|
+
ca_detach_n(4, image, cy, cx, cz);
|
334
|
+
|
335
|
+
return Qnil;
|
336
|
+
}
|
337
|
+
|
338
|
+
void
|
339
|
+
fill_rectangle_grid (CArray *image, CArray *cy, CArray *cx, CArray *cv);
|
340
|
+
|
341
|
+
static VALUE
|
342
|
+
rb_img_fill_rectangle_grid (VALUE self,
|
343
|
+
volatile VALUE vy, volatile VALUE vx, volatile VALUE vz)
|
344
|
+
{
|
345
|
+
CArray *image, *cy, *cx, *cz;
|
346
|
+
|
347
|
+
Data_Get_Struct(self, CArray, image);
|
348
|
+
|
349
|
+
cy = ca_wrap_readonly(vy, CA_FLOAT);
|
350
|
+
cx = ca_wrap_readonly(vx, CA_FLOAT);
|
351
|
+
cz = ca_wrap_readonly(vz, image->data_type);
|
352
|
+
|
353
|
+
ca_attach_n(4, image, cy, cx, cz);
|
354
|
+
|
355
|
+
fill_rectangle_grid(image, cy, cx, cz);
|
356
|
+
|
357
|
+
ca_detach_n(4, image, cy, cx, cz);
|
358
|
+
|
359
|
+
return Qnil;
|
360
|
+
}
|
361
|
+
|
362
|
+
void
|
363
|
+
draw_rectangle_gradation (CArray *image, float y[4], float x[4], float z[4]);
|
364
|
+
|
365
|
+
static VALUE
|
366
|
+
rb_img_draw_rectangle_gradation (VALUE self,
|
367
|
+
volatile VALUE vy, volatile VALUE vx, volatile VALUE vz)
|
368
|
+
{
|
369
|
+
CArray *image, *cy, *cx, *cz;
|
370
|
+
|
371
|
+
Data_Get_Struct(self, CArray, image);
|
372
|
+
|
373
|
+
cy = ca_wrap_readonly(vy, CA_FLOAT);
|
374
|
+
cx = ca_wrap_readonly(vx, CA_FLOAT);
|
375
|
+
cz = ca_wrap_readonly(vz, CA_FLOAT);
|
376
|
+
|
377
|
+
if ( cy->elements != 4 || cx->elements != 4 || cz->elements != 4) {
|
378
|
+
rb_raise(rb_eRuntimeError, "invalid size of y or x or z");
|
379
|
+
}
|
380
|
+
|
381
|
+
ca_attach_n(4, image, cy, cx, cz);
|
382
|
+
|
383
|
+
draw_rectangle_gradation(image,
|
384
|
+
(float*)cy->ptr, (float*)cx->ptr, (float*)cz->ptr);
|
385
|
+
|
386
|
+
ca_detach_n(4, image, cy, cx, cz);
|
387
|
+
|
388
|
+
return Qnil;
|
389
|
+
}
|
390
|
+
|
391
|
+
void
|
392
|
+
draw_rectangle_gradation_grid (CArray *image,
|
393
|
+
CArray *cy, CArray *cx, CArray *cv);
|
394
|
+
|
395
|
+
static VALUE
|
396
|
+
rb_img_draw_rectangle_gradation_grid (VALUE self,
|
397
|
+
volatile VALUE vy, volatile VALUE vx, volatile VALUE vz)
|
398
|
+
{
|
399
|
+
CArray *image, *cy, *cx, *cz;
|
400
|
+
|
401
|
+
Data_Get_Struct(self, CArray, image);
|
402
|
+
|
403
|
+
cy = ca_wrap_readonly(vy, CA_FLOAT);
|
404
|
+
cx = ca_wrap_readonly(vx, CA_FLOAT);
|
405
|
+
cz = ca_wrap_readonly(vz, image->data_type);
|
406
|
+
|
407
|
+
ca_attach_n(4, image, cy, cx, cz);
|
408
|
+
|
409
|
+
draw_rectangle_gradation_grid(image, cy, cx, cz);
|
410
|
+
|
411
|
+
ca_detach_n(4, image, cy, cx, cz);
|
412
|
+
|
413
|
+
return Qnil;
|
414
|
+
}
|
415
|
+
|
416
|
+
void
|
417
|
+
draw_points (CArray *image,
|
418
|
+
CArray *cy, CArray *cx, CArray *cz);
|
419
|
+
|
420
|
+
static VALUE
|
421
|
+
rb_img_draw_points (VALUE self,
|
422
|
+
volatile VALUE vy, volatile VALUE vx, volatile VALUE vz)
|
423
|
+
{
|
424
|
+
CArray *image, *cy, *cx, *cz;
|
425
|
+
|
426
|
+
Data_Get_Struct(self, CArray, image);
|
427
|
+
|
428
|
+
cy = ca_wrap_readonly(vy, CA_FLOAT);
|
429
|
+
cx = ca_wrap_readonly(vx, CA_FLOAT);
|
430
|
+
cz = ca_wrap_readonly(vz, image->data_type);
|
431
|
+
|
432
|
+
ca_attach_n(4, image, cy, cx, cz);
|
433
|
+
|
434
|
+
draw_points(image, cy, cx, cz);
|
435
|
+
|
436
|
+
ca_detach_n(4, image, cy, cx, cz);
|
437
|
+
|
438
|
+
return Qnil;
|
439
|
+
}
|
440
|
+
|
441
|
+
void
|
442
|
+
draw_polyline (CArray *image,
|
443
|
+
CArray *cy, CArray *cx, char *ptr);
|
444
|
+
|
445
|
+
static VALUE
|
446
|
+
rb_img_draw_polyline (VALUE self,
|
447
|
+
volatile VALUE vy, volatile VALUE vx, volatile VALUE vz)
|
448
|
+
{
|
449
|
+
CArray *image, *cy, *cx, *cz;
|
450
|
+
|
451
|
+
Data_Get_Struct(self, CArray, image);
|
452
|
+
|
453
|
+
cy = ca_wrap_readonly(vy, CA_FLOAT);
|
454
|
+
cx = ca_wrap_readonly(vx, CA_FLOAT);
|
455
|
+
cz = ca_wrap_readonly(vz, image->data_type);
|
456
|
+
|
457
|
+
ca_attach_n(4, image, cy, cx, cz);
|
458
|
+
|
459
|
+
draw_polyline(image, cy, cx, cz->ptr);
|
460
|
+
|
461
|
+
ca_detach_n(4, image, cy, cx, cz);
|
462
|
+
|
463
|
+
return Qnil;
|
464
|
+
}
|
465
|
+
|
466
|
+
void
|
467
|
+
Init_carray_imagemap ()
|
468
|
+
{
|
469
|
+
VALUE rb_cImage = rb_const_get(rb_cObject, rb_intern("ImageMap"));
|
470
|
+
|
471
|
+
rb_define_singleton_method(rb_cImage, "fill_rect", rb_im_fill_rect, 4);
|
472
|
+
|
473
|
+
rb_define_method(rb_cImage, "fill_rectangle",
|
474
|
+
rb_img_fill_rectangle, 3);
|
475
|
+
rb_define_method(rb_cImage, "fill_rectangle_image",
|
476
|
+
rb_img_fill_rectangle_image, 3);
|
477
|
+
rb_define_method(rb_cImage, "fill_rectangle_grid",
|
478
|
+
rb_img_fill_rectangle_grid, 3);
|
479
|
+
|
480
|
+
rb_define_method(rb_cImage, "draw_line", rb_img_draw_line, 5);
|
481
|
+
rb_define_method(rb_cImage, "draw_hline_gradation",
|
482
|
+
rb_img_draw_hline_gradation, 5);
|
483
|
+
rb_define_method(rb_cImage, "draw_triangle_gradation",
|
484
|
+
rb_img_draw_triangle_gradation, 3);
|
485
|
+
rb_define_method(rb_cImage, "draw_rectangle_gradation",
|
486
|
+
rb_img_draw_rectangle_gradation, 3);
|
487
|
+
rb_define_method(rb_cImage, "draw_rectangle_gradation_grid",
|
488
|
+
rb_img_draw_rectangle_gradation_grid, 3);
|
489
|
+
|
490
|
+
rb_define_method(rb_cImage, "draw_points", rb_img_draw_points, 3);
|
491
|
+
rb_define_method(rb_cImage, "draw_polyline", rb_img_draw_polyline, 3);
|
492
|
+
|
493
|
+
}
|
494
|
+
|
495
|
+
|