Files
test/source/blender/python/mathutils/mathutils_kdtree.hh
Bastien Montagne 4fac7828e4 Refactor: Move BPY mathutils headers to proper C++ ones.
This module actually was confusing, since only a few headers were
effectively still C ones (using the `extern "C"` blocks)...
2024-09-25 18:04:27 +02:00

14 lines
229 B
C++

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup mathutils
*/
#pragma once
PyMODINIT_FUNC PyInit_mathutils_kdtree();
extern PyTypeObject PyKDTree_Type;