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/
51 lines
1.5 KiB
C
51 lines
1.5 KiB
C
/* SPDX-FileCopyrightText: 2023 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
/** \file
|
|
* \ingroup bli
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct MemArena;
|
|
|
|
/**
|
|
* A version of #BLI_polyfill_calc that uses a memory arena to avoid re-allocations.
|
|
*/
|
|
void BLI_polyfill_calc_arena(const float (*coords)[2],
|
|
unsigned int coords_num,
|
|
int coords_sign,
|
|
unsigned int (*r_tris)[3],
|
|
|
|
struct MemArena *arena);
|
|
|
|
/**
|
|
* Triangulates the given (convex or concave) simple polygon to a list of triangle vertices.
|
|
*
|
|
* \param coords: 2D coordinates describing vertices of the polygon,
|
|
* in either clockwise or counterclockwise order.
|
|
* \param coords_num: Total points in the array.
|
|
* \param coords_sign: Pass this when we know the sign in advance to avoid extra calculations.
|
|
*
|
|
* \param r_tris: This array is filled in with triangle indices in clockwise order.
|
|
* The length of the array must be `coords_num - 2`.
|
|
* Indices are guaranteed to be assigned to unique triangles, with valid indices,
|
|
* even in the case of degenerate input (self intersecting polygons, zero area ears... etc).
|
|
*/
|
|
void BLI_polyfill_calc(const float (*coords)[2],
|
|
unsigned int coords_num,
|
|
int coords_sign,
|
|
unsigned int (*r_tris)[3]);
|
|
|
|
/* default size of polyfill arena */
|
|
#define BLI_POLYFILL_ARENA_SIZE MEM_SIZE_OPTIMAL(1 << 14)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|