mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
11 lines
307 B
C++
11 lines
307 B
C++
#include "ruby.h"
|
|
|
|
namespace rubyopencv {
|
|
namespace Mat {
|
|
VALUE rb_line(int argc, VALUE *argv, VALUE self);
|
|
VALUE rb_line_bang(int argc, VALUE *argv, VALUE self);
|
|
|
|
VALUE rb_rectangle(int argc, VALUE *argv, VALUE self);
|
|
VALUE rb_rectangle_bang(int argc, VALUE *argv, VALUE self);
|
|
}
|
|
}
|