"Own" (the adjective) cannot be used on its own. It should be combined with something like "its own", "our own", "her own", or "the object's own". It also isn't used separately to mean something like "separate". Also, "its own" is correct instead of "it's own" which is a misues of the verb.
39 lines
650 B
C
39 lines
650 B
C
/* SPDX-FileCopyrightText: 2024 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup DNA
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <math.h>
|
|
|
|
/* clang-format off */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name AnimationLayer Struct
|
|
* \{ */
|
|
|
|
#define _DNA_DEFAULT_AnimationLayer \
|
|
{ \
|
|
.influence = 1.0f, \
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name AnimationStrip Struct
|
|
* \{ */
|
|
|
|
#define _DNA_DEFAULT_AnimationStrip \
|
|
{ \
|
|
.frame_start = -INFINITY, \
|
|
.frame_end = INFINITY, \
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* clang-format on */
|