summaryrefslogtreecommitdiff
path: root/src/lib/evas/canvas/evas_vg_shape.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/evas/canvas/evas_vg_shape.c')
-rw-r--r--src/lib/evas/canvas/evas_vg_shape.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/evas/canvas/evas_vg_shape.c b/src/lib/evas/canvas/evas_vg_shape.c
index fd80c1a978..74073f1f59 100644
--- a/src/lib/evas/canvas/evas_vg_shape.c
+++ b/src/lib/evas/canvas/evas_vg_shape.c
@@ -525,4 +525,16 @@ evas_vg_shape_shape_equal_commands(Eo *obj, const Eo *with)
return eo_do(obj, efl_gfx_shape_equal_commands(with));
}
+EAPI void
+evas_vg_shape_shape_append_rounded_rect(Eo *obj, double x, double y, double w, double h, double xr, double yr)
+{
+ eo_do(obj, efl_gfx_shape_append_rounded_rect(x, y, w, h, xr, yr));
+}
+
+EAPI void
+evas_vg_shape_shape_append_arc(Eo *obj, double x, double y, double w, double h, double start_angle, double sweep_length)
+{
+ eo_do(obj, efl_gfx_shape_append_rounded_rect(x, y, w, h, start_angle, sweep_length));
+}
+
#include "efl_vg_shape.eo.c"