class Evas.Polygon (Evas.Object) { legacy_prefix: evas_object_polygon; eo_prefix: evas_obj_polygon; methods { point_add { [[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.]] } } points_clear { [[Removes all of the points from the given evas polygon object.]] } } implements { Eo.Base.constructor; Eo.Base.destructor; } }