This module actually was confusing, since only a few headers were effectively still C ones (using the `extern "C"` blocks)...
17 lines
364 B
C++
17 lines
364 B
C++
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup mathutils
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
PyMODINIT_FUNC PyInit_mathutils_bvhtree();
|
|
|
|
extern PyTypeObject PyBVHTree_Type;
|
|
|
|
#define PyBVHTree_Check(v) PyObject_TypeCheck((v), &PyBVHTree_Type)
|
|
#define PyBVHTree_CheckExact(v) (Py_TYPE(v) == &PyBVHTree_Type)
|