Blender V4.3
BPy_UnaryPredicate1D.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#pragma once
10
11extern "C" {
12#include <Python.h>
13}
14
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
22
23extern PyTypeObject UnaryPredicate1D_Type;
24
25#define BPy_UnaryPredicate1D_Check(v) \
26 (PyObject_IsInstance((PyObject *)v, (PyObject *)&UnaryPredicate1D_Type))
27
28/*---------------------------Python BPy_UnaryPredicate1D structure definition----------*/
29typedef struct {
30 PyObject_HEAD
33
34/*---------------------------Python BPy_UnaryPredicate1D visible prototypes-----------*/
35
36int UnaryPredicate1D_Init(PyObject *module);
37
39
40#ifdef __cplusplus
41}
42#endif
PyTypeObject UnaryPredicate1D_Type
int UnaryPredicate1D_Init(PyObject *module)
Class gathering stroke creation algorithms.
static struct PyModuleDef module
Definition python.cpp:991
PyObject_HEAD Freestyle::UnaryPredicate1D * up1D