evas polygon: Eolian doc conversion of polygon.

Summary: Signed-off-by: Srivardhan Hebbar <sri.hebbar@samsung.com>

Reviewers: cedric, tasn, q66

Reviewed By: q66

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D2854
This commit is contained in:
Srivardhan Hebbar 2015-07-22 10:41:39 +01:00 committed by Daniel Kolesa
parent 99efa51a39
commit d516d409c4
1 changed files with 4 additions and 7 deletions

View File

@ -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 {