The only remaining code in source/blender that must be compiled as C is now datatoc generated code and the DNA defaults that use designated initializers. Pull Request: https://projects.blender.org/blender/blender/pulls/134469
26 lines
735 B
C
26 lines
735 B
C
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup freestyle
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "../BPy_BinaryPredicate1D.h"
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
extern PyTypeObject ViewMapGradientNormBP1D_Type;
|
|
|
|
#define BPy_ViewMapGradientNormBP1D_Check(v) \
|
|
(PyObject_IsInstance((PyObject *)v, (PyObject *)&ViewMapGradientNormBP1D_Type))
|
|
|
|
/*---------------------------Python BPy_ViewMapGradientNormBP1D structure definition----------*/
|
|
typedef struct {
|
|
BPy_BinaryPredicate1D py_bp1D;
|
|
} BPy_ViewMapGradientNormBP1D;
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|