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

31 lines
822 B
Plaintext

class Evas.Line (Evas.Object)
{
legacy_prefix: evas_object_line;
eo_prefix: evas_obj_line;
properties {
xy {
set {
/*@
@since 1.8
Sets the coordinates of the end points of the given evas line object. */
}
get {
/*@
Retrieves the coordinates of the end points of the given evas line object.
second end point. */
}
values {
Evas_Coord x1(0); /*@ The X coordinate of the first point. */
Evas_Coord y1(3); /*@ The Y coordinate of the first point. */
Evas_Coord x2; /*@ The X coordinate of the second point. */
Evas_Coord y2; /*@ The Y coordinate of the second point. */
}
}
}
implements {
Eo.Base.constructor;
}
}