Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DNA_lattice_defaults.h « makesdna « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26f8c87631027449db945978500af6749296c9ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup DNA
 */

#pragma once

/* Struct members on own line. */
/* clang-format off */

/* -------------------------------------------------------------------- */
/** \name Lattice Struct
 * \{ */

#define _DNA_DEFAULT_Lattice \
  { \
    .flag = LT_GRID, \
    .typeu = KEY_BSPLINE, \
    .typev = KEY_BSPLINE, \
    .typew = KEY_BSPLINE, \
    .actbp = LT_ACTBP_NONE, \
  }

/** \} */

/* clang-format on */