evas: added missing append_arc() api declaration. 78/56378/1
authorSubhransu Mohanty <sub.mohanty@samsung.com>
Thu, 7 Jan 2016 06:34:01 +0000 (15:34 +0900)
committerSubhransu Mohanty <sub.mohanty@samsung.com>
Thu, 7 Jan 2016 06:46:42 +0000 (15:46 +0900)
Change-Id: I5eb1c5c37be4b75b31dbf5ab953720dead26331e

src/lib/evas/Evas_Legacy.h

index 2e1aff4..5b82b4e 100644 (file)
@@ -2319,6 +2319,24 @@ EAPI void evas_vg_shape_shape_append_scubic_to(Eo *obj, double x, double y, doub
  */
 EAPI void evas_vg_shape_shape_append_arc_to(Eo *obj, double x, double y, double rx, double ry, double angle, Eina_Bool large_arc, Eina_Bool sweep);
 
+
+/**
+ * @brief Append an arc that enclosed in the given rectangle (x, y, w, h). The
+ * angle is defined in counter clock wise , use -ve angle for clockwise arc.
+ *
+ * @param[in] y Y co-ordinate of the rect.
+ * @param[in] w width of the rect.
+ * @param[in] h height of the rect.
+ * @param[in] start_angle Angle at which the arc will start
+ * @param[in] sweep_length @ Length of the arc.
+ *
+ * @since 1.14
+ *
+ * @ingroup Efl_Gfx_Shape
+ */
+EAPI void evas_vg_shape_shape_append_arc(Eo *obj, double x, double y, double w, double h, double start_angle, double sweep_length);
+
+
 /**
  *
  * Closes the current subpath by drawing a line to the beginning of the subpath,