From 7cec010df57dae93130944e3242248c669b99cec Mon Sep 17 00:00:00 2001 From: brindosch Date: Sun, 7 May 2017 17:06:47 +0200 Subject: [PATCH] update --- libsrc/effectengine/Effect.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libsrc/effectengine/Effect.h b/libsrc/effectengine/Effect.h index 3a58d8d4..9b811f89 100644 --- a/libsrc/effectengine/Effect.h +++ b/libsrc/effectengine/Effect.h @@ -64,13 +64,14 @@ private: static PyObject* wrapImageDrawLine (PyObject *self, PyObject *args); static PyObject* wrapImageDrawPoint (PyObject *self, PyObject *args); static PyObject* wrapImageDrawRect (PyObject *self, PyObject *args); + static PyObject* wrapImageDrawPolygon (PyObject *self, PyObject *args); + static PyObject* wrapImageDrawPie (PyObject *self, PyObject *args); static PyObject* wrapImageSetPixel (PyObject *self, PyObject *args); static PyObject* wrapImageGetPixel (PyObject *self, PyObject *args); static PyObject* wrapImageSave (PyObject *self, PyObject *args); static PyObject* wrapImageMinSize (PyObject *self, PyObject *args); static PyObject* wrapImageWidth (PyObject *self, PyObject *args); static PyObject* wrapImageHeight (PyObject *self, PyObject *args); - static PyObject* wrapHsvFtoRgb (PyObject *self, PyObject *args); static Effect * getEffect();