Documentation arrived.
[ruby-evas.git] / src / rb_polygon.c
index 0a04170469f13e9f87bf9d008c46f5ba33b13aa7..9a8913c116ea010397a0318a67de27958373eebb 100644 (file)
@@ -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 <i>polygon</i>.
+ */
+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 <i>polygon</i>.
+ */
+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);
 }