efl/src/lib/evas/canvas/evas_polygon.eo

23 lines
572 B
Plaintext
Raw Normal View History

2014-06-27 15:25:20 -07:00
class Evas.Polygon (Evas.Object)
2014-03-09 00:09:19 -08:00
{
legacy_prefix: evas_object_polygon;
eo_prefix: evas_obj_polygon;
2014-03-09 00:09:19 -08:00
methods {
point_add {
[[Adds the given point to the given evas polygon object.]]
2014-03-09 00:09:19 -08:00
params {
@in x: Evas.Coord; [[The X coordinate of the given point.]]
@in y: Evas.Coord; [[The Y coordinate of the given point.]]
2014-03-09 00:09:19 -08:00
}
}
points_clear {
[[Removes all of the points from the given evas polygon object.]]
2014-03-09 00:09:19 -08:00
}
}
implements {
Eo.Base.constructor;
Eo.Base.destructor;
2014-03-09 00:09:19 -08:00
}
}