Blender  V3.3
BPy_Stroke.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
7 #pragma once
8 
9 #include "../BPy_Interface1D.h"
10 
11 #include "../../stroke/Stroke.h"
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
18 
19 extern PyTypeObject Stroke_Type;
20 
21 #define BPy_Stroke_Check(v) (((PyObject *)v)->ob_type == &Stroke_Type)
22 
23 /*---------------------------Python BPy_Stroke structure definition----------*/
24 typedef struct {
27 } BPy_Stroke;
28 
30 
31 #ifdef __cplusplus
32 }
33 #endif
PyTypeObject Stroke_Type
Definition: BPy_Stroke.cpp:487
BPy_Interface1D py_if1D
Definition: BPy_Stroke.h:25
Freestyle::Stroke * s
Definition: BPy_Stroke.h:26