cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=eaeaf8831c139880a5e179cdbab8873320a62476
commit eaeaf8831c139880a5e179cdbab8873320a62476 Author: Cedric BAIL <[email protected]> Date: Wed Jun 28 14:42:28 2017 -0700 evas: expose evas_map_coords_get. --- src/lib/evas/Evas_Legacy.h | 14 ++++++++++++++ src/lib/evas/canvas/evas_map.c | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/lib/evas/Evas_Legacy.h b/src/lib/evas/Evas_Legacy.h index c07cecd058..72eaa6adb9 100644 --- a/src/lib/evas/Evas_Legacy.h +++ b/src/lib/evas/Evas_Legacy.h @@ -7534,6 +7534,20 @@ EAPI void evas_map_free(Evas_Map *m); EAPI int evas_map_count_get(const Evas_Map *m) EINA_CONST; /** + * Apply a map transformation on given coordinate + * + * @param m map to use to transform x and y + * @param x point x source coordinate + * @param y point y source coordinate + * @param mx point x after transformation by m + * @param my point y after transformation by m + * @param grab + * @return #EINA_TRUE on success interpolation, @EINA_FALSE otherwise + */ +EAPI Eina_Bool evas_map_coords_get(const Evas_Map *m, double x, double y, + double *mx, double *my, int grab); + +/** * Change the map point's coordinate. * * This sets the fixed point's coordinate in the map. Note that points diff --git a/src/lib/evas/canvas/evas_map.c b/src/lib/evas/canvas/evas_map.c index 6e81c771eb..0283762e2d 100644 --- a/src/lib/evas/canvas/evas_map.c +++ b/src/lib/evas/canvas/evas_map.c @@ -239,7 +239,7 @@ _evas_map_free(Evas_Object *eo_obj, Evas_Map *m) free(m); } -Eina_Bool +EAPI Eina_Bool evas_map_coords_get(const Evas_Map *m, double x, double y, double *mx, double *my, int grab) { --
