X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Frb_polygon.c;h=9a8913c116ea010397a0318a67de27958373eebb;hb=1f6059ba8be27832fc4b6f88c99548e39f4264cb;hp=0a04170469f13e9f87bf9d008c46f5ba33b13aa7;hpb=8efd0235a6bb26710fd89dd07a5fdb55cafde247;p=ruby-evas.git diff --git a/src/rb_polygon.c b/src/rb_polygon.c index 0a04170..9a8913c 100644 --- a/src/rb_polygon.c +++ b/src/rb_polygon.c @@ -1,5 +1,5 @@ /* - * $Id: rb_polygon.c 49 2004-08-01 10:17:39Z tilman $ + * $Id: rb_polygon.c 58 2004-08-10 14:10:02Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -31,6 +31,12 @@ static void c_free (RbEvasObject *e) c_evas_object_free (e, true); } +/* + * call-seq: + * Evas::Polygon.new(evas) => polygon + * + * Creates an new Evas::Polygon object. + */ static VALUE c_new (VALUE klass, VALUE evas) { VALUE self, argv[1]; @@ -49,7 +55,13 @@ static VALUE c_new (VALUE klass, VALUE evas) return self; } -static VALUE c_point_add (VALUE self, VALUE x, VALUE y) +/* + * call-seq: + * polygon.add_point(x, y) => nil + * + * Adds a point to polygon. + */ +static VALUE c_add_point (VALUE self, VALUE x, VALUE y) { GET_OBJ (self, RbEvasObject, e); @@ -61,7 +73,13 @@ static VALUE c_point_add (VALUE self, VALUE x, VALUE y) return Qnil; } -static VALUE c_points_clear (VALUE self) +/* + * call-seq: + * polygon.clear_points => nil + * + * Clears the points of polygon. + */ +static VALUE c_clear_points (VALUE self) { GET_OBJ (self, RbEvasObject, e); @@ -75,6 +93,6 @@ void Init_Polygon (void) VALUE c = rb_define_class_under (mEvas, "Polygon", cEvasObject); rb_define_singleton_method (c, "new", c_new, 1); - rb_define_method (c, "point_add", c_point_add, 2); - rb_define_method (c, "points_clear", c_points_clear, 0); + rb_define_method (c, "add_point", c_add_point, 2); + rb_define_method (c, "clear_points", c_clear_points, 0); }