From d516d409c44acfa3a85d94c6eca2696a6229a3d6 Mon Sep 17 00:00:00 2001 From: Srivardhan Hebbar Date: Wed, 22 Jul 2015 10:41:39 +0100 Subject: [PATCH] evas polygon: Eolian doc conversion of polygon. Summary: Signed-off-by: Srivardhan Hebbar Reviewers: cedric, tasn, q66 Reviewed By: q66 Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D2854 --- src/lib/evas/canvas/evas_polygon.eo | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/lib/evas/canvas/evas_polygon.eo b/src/lib/evas/canvas/evas_polygon.eo index 07b8956e9f..4a7357ad28 100644 --- a/src/lib/evas/canvas/evas_polygon.eo +++ b/src/lib/evas/canvas/evas_polygon.eo @@ -4,17 +4,14 @@ class Evas.Polygon (Evas.Object) eo_prefix: evas_obj_polygon; methods { point_add { - /*@ - Adds the given point to the given evas polygon object. - @ingroup Evas_Polygon_Group */ + [[Adds the given point to the given evas polygon object.]] params { - @in x: Evas.Coord; /*@ The X coordinate of the given point. */ - @in y: Evas.Coord; /*@ The Y coordinate of the given point. */ + @in x: Evas.Coord; [[The X coordinate of the given point.]] + @in y: Evas.Coord; [[The Y coordinate of the given point.]] } } points_clear { - /*@ - Removes all of the points from the given evas polygon object. */ + [[Removes all of the points from the given evas polygon object.]] } } implements {