summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/evas/canvas/evas_line.eo21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/lib/evas/canvas/evas_line.eo b/src/lib/evas/canvas/evas_line.eo
index 398e383905..3632adabbc 100644
--- a/src/lib/evas/canvas/evas_line.eo
+++ b/src/lib/evas/canvas/evas_line.eo
@@ -5,21 +5,22 @@ class Evas.Line (Evas.Object)
methods {
@property xy {
set {
- /*@
- @since 1.8
+ [[Sets the coordinates of the end points of the given evas line
+ object.
- Sets the coordinates of the end points of the given evas line object. */
+ @since 1.8
+ ]]
}
get {
- /*@
- Retrieves the coordinates of the end points of the given evas line object.
- second end point. */
+ [[Retrieves the coordinates of the end points of the given evas
+ line object.
+ ]]
}
values {
- x1: Evas_Coord(0); /*@ The X coordinate of the first point. */
- y1: Evas_Coord(3); /*@ The Y coordinate of the first point. */
- x2: Evas_Coord; /*@ The X coordinate of the second point. */
- y2: Evas_Coord; /*@ The Y coordinate of the second point. */
+ x1: Evas_Coord(0); [[The X coordinate of the first point.]]
+ y1: Evas_Coord(3); [[The Y coordinate of the first point.]]
+ x2: Evas_Coord; [[The X coordinate of the second point.]]
+ y2: Evas_Coord; [[The Y coordinate of the second point.]]
}
}
}