blob: 41f5d872c81a6d759f6137f9b30d90ce1981515e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
class Efl.Canvas.Polygon (Efl.Canvas.Object)
{
[[Low-level polygon object]]
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 {
Efl.Object.constructor;
Efl.Object.destructor;
}
}
|