A lot of files were missing copyright field in the header and
the Blender Foundation contributed to them in a sense of bug
fixing and general maintenance.
This change makes it explicit that those files are at least
partially copyrighted by the Blender Foundation.
Note that this does not make it so the Blender Foundation is
the only holder of the copyright in those files, and developers
who do not have a signed contract with the foundation still
hold the copyright as well.
Another aspect of this change is using SPDX format for the
header. We already used it for the license specification,
and now we state it for the copyright as well, following the
FAQ:
https://reuse.software/faq/
60 lines
1.6 KiB
C
60 lines
1.6 KiB
C
/* SPDX-FileCopyrightText: 2023 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup pymathutils
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern PyTypeObject vector_Type;
|
|
|
|
#define VectorObject_Check(v) PyObject_TypeCheck((v), &vector_Type)
|
|
#define VectorObject_CheckExact(v) (Py_TYPE(v) == &vector_Type)
|
|
|
|
typedef struct {
|
|
BASE_MATH_MEMBERS(vec);
|
|
|
|
/** Number of items in this vector (2 or more). */
|
|
int vec_num;
|
|
} VectorObject;
|
|
|
|
/* Prototypes. */
|
|
|
|
PyObject *Vector_CreatePyObject(const float *vec,
|
|
int vec_num,
|
|
PyTypeObject *base_type) ATTR_WARN_UNUSED_RESULT;
|
|
/**
|
|
* Create a vector that wraps existing memory.
|
|
*
|
|
* \param vec: Use this vector in-place.
|
|
*/
|
|
PyObject *Vector_CreatePyObject_wrap(float *vec,
|
|
int vec_num,
|
|
PyTypeObject *base_type) ATTR_WARN_UNUSED_RESULT
|
|
ATTR_NONNULL(1);
|
|
/**
|
|
* Create a vector where the value is defined by registered callbacks,
|
|
* see: #Mathutils_RegisterCallback
|
|
*/
|
|
PyObject *Vector_CreatePyObject_cb(PyObject *user,
|
|
int vec_num,
|
|
unsigned char cb_type,
|
|
unsigned char subtype) ATTR_WARN_UNUSED_RESULT;
|
|
/**
|
|
* \param vec: Initialized vector value to use in-place, allocated with #PyMem_Malloc
|
|
*/
|
|
PyObject *Vector_CreatePyObject_alloc(float *vec,
|
|
int vec_num,
|
|
PyTypeObject *base_type) ATTR_WARN_UNUSED_RESULT
|
|
ATTR_NONNULL(1);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|