Use a shorter/simpler license convention, stops the header taking so much space. Follow the SPDX license specification: https://spdx.org/licenses - C/C++/objc/objc++ - Python - Shell Scripts - CMake, GNUmakefile While most of the source tree has been included - `./extern/` was left out. - `./intern/cycles` & `./intern/atomic` are also excluded because they use different header conventions. doc/license/SPDX-license-identifiers.txt has been added to list SPDX all used identifiers. See P2788 for the script that automated these edits. Reviewed By: brecht, mont29, sergey Ref D14069
44 lines
1.5 KiB
C++
44 lines
1.5 KiB
C++
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2007 by Janne Karhu. All rights reserved. */
|
|
|
|
/** \file
|
|
* \ingroup edphys
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define KEY_K \
|
|
PTCacheEditKey *key; \
|
|
int k
|
|
#define POINT_P \
|
|
PTCacheEditPoint *point; \
|
|
int p
|
|
#define LOOP_POINTS for (p = 0, point = edit->points; p < edit->totpoint; p++, point++)
|
|
#define LOOP_VISIBLE_POINTS \
|
|
for (p = 0, point = edit->points; p < edit->totpoint; p++, point++) \
|
|
if (!(point->flag & PEP_HIDE))
|
|
#define LOOP_SELECTED_POINTS \
|
|
for (p = 0, point = edit->points; p < edit->totpoint; p++, point++) \
|
|
if (point_is_selected(point))
|
|
#define LOOP_UNSELECTED_POINTS \
|
|
for (p = 0, point = edit->points; p < edit->totpoint; p++, point++) \
|
|
if (!point_is_selected(point))
|
|
#define LOOP_EDITED_POINTS \
|
|
for (p = 0, point = edit->points; p < edit->totpoint; p++, point++) \
|
|
if (point->flag & PEP_EDIT_RECALC)
|
|
#define LOOP_TAGGED_POINTS \
|
|
for (p = 0, point = edit->points; p < edit->totpoint; p++, point++) \
|
|
if (point->flag & PEP_TAG)
|
|
#define LOOP_KEYS for (k = 0, key = point->keys; k < point->totkey; k++, key++)
|
|
#define LOOP_VISIBLE_KEYS \
|
|
for (k = 0, key = point->keys; k < point->totkey; k++, key++) \
|
|
if (!(key->flag & PEK_HIDE))
|
|
#define LOOP_SELECTED_KEYS \
|
|
for (k = 0, key = point->keys; k < point->totkey; k++, key++) \
|
|
if ((key->flag & PEK_SELECT) && !(key->flag & PEK_HIDE))
|
|
#define LOOP_TAGGED_KEYS \
|
|
for (k = 0, key = point->keys; k < point->totkey; k++, key++) \
|
|
if (key->flag & PEK_TAG)
|
|
|
|
#define KEY_WCO ((key->flag & PEK_USE_WCO) ? key->world_co : key->co)
|