/* SPDX-License-Identifier: GPL-2.0-or-later */ /** \file * \ingroup freestyle */ #pragma once #include "../BPy_UnaryPredicate1D.h" #ifdef __cplusplus extern "C" { #endif /////////////////////////////////////////////////////////////////////////////////////////// extern PyTypeObject ExternalContourUP1D_Type; #define BPy_ExternalContourUP1D_Check(v) \ (PyObject_IsInstance((PyObject *)v, (PyObject *)&ExternalContourUP1D_Type)) /*---------------------------Python BPy_ExternalContourUP1D structure definition----------*/ typedef struct { BPy_UnaryPredicate1D py_up1D; } BPy_ExternalContourUP1D; /////////////////////////////////////////////////////////////////////////////////////////// #ifdef __cplusplus } #endif