1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00

changed argument format of cCvMat::rb_range, cCvMat::rb_range_bang

This commit is contained in:
ser1zw 2011-07-21 20:33:06 +09:00
parent 5854a3ca4a
commit 92c0582580
2 changed files with 7 additions and 9 deletions

View file

@ -73,8 +73,8 @@ VALUE rb_clear(VALUE self);
VALUE rb_clear_bang(VALUE self);
VALUE rb_set_identity(int argc, VALUE *argv, VALUE self);
VALUE rb_set_identity_bang(int argc, VALUE *argv, VALUE self);
VALUE rb_range(int argc, VALUE *argv, VALUE self);
VALUE rb_range_bang(int argc, VALUE *argv, VALUE self);
VALUE rb_range(VALUE self, VALUE start, VALUE end);
VALUE rb_range_bang(VALUE self, VALUE start, VALUE end);
/* Transforms and Permutations */
VALUE rb_reshape(VALUE self, VALUE hash);
VALUE rb_repeat(VALUE self, VALUE object);