| | |
| |
|
| | #ifndef MPL_PY_CONVERTERS_H |
| | #define MPL_PY_CONVERTERS_H |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #include <Python.h> |
| | #include "_backend_agg_basic_types.h" |
| |
|
| | extern "C" { |
| | typedef int (*converter)(PyObject *, void *); |
| |
|
| | int convert_from_attr(PyObject *obj, const char *name, converter func, void *p); |
| | int convert_from_method(PyObject *obj, const char *name, converter func, void *p); |
| |
|
| | int convert_double(PyObject *obj, void *p); |
| | int convert_bool(PyObject *obj, void *p); |
| | int convert_cap(PyObject *capobj, void *capp); |
| | int convert_join(PyObject *joinobj, void *joinp); |
| | int convert_rect(PyObject *rectobj, void *rectp); |
| | int convert_rgba(PyObject *rgbaocj, void *rgbap); |
| | int convert_dashes(PyObject *dashobj, void *gcp); |
| | int convert_dashes_vector(PyObject *obj, void *dashesp); |
| | int convert_trans_affine(PyObject *obj, void *transp); |
| | int convert_path(PyObject *obj, void *pathp); |
| | int convert_pathgen(PyObject *obj, void *pathgenp); |
| | int convert_clippath(PyObject *clippath_tuple, void *clippathp); |
| | int convert_snap(PyObject *obj, void *snapp); |
| | int convert_sketch_params(PyObject *obj, void *sketchp); |
| | int convert_gcagg(PyObject *pygc, void *gcp); |
| | int convert_points(PyObject *pygc, void *pointsp); |
| | int convert_transforms(PyObject *pygc, void *transp); |
| | int convert_bboxes(PyObject *pygc, void *bboxp); |
| | int convert_colors(PyObject *pygc, void *colorsp); |
| |
|
| | int convert_face(PyObject *color, GCAgg &gc, agg::rgba *rgba); |
| | } |
| |
|
| | #endif |
| |
|