Blender V4.3
BPy_Stroke.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
11#include "../BPy_Interface1D.h"
12
13#include "../../stroke/Stroke.h"
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
20
21extern PyTypeObject Stroke_Type;
22
23#define BPy_Stroke_Check(v) (((PyObject *)v)->ob_type == &Stroke_Type)
24
25/*---------------------------Python BPy_Stroke structure definition----------*/
30
32
33#ifdef __cplusplus
34}
35#endif
PyTypeObject Stroke_Type
Classes to define a stroke.
BPy_Interface1D py_if1D
Definition BPy_Stroke.h:27
Freestyle::Stroke * s
Definition BPy_Stroke.h:28