45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
/* SPDX-FileCopyrightText: 2009 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup RNA
|
|
*/
|
|
|
|
#include <cstdlib>
|
|
|
|
#include "RNA_define.hh"
|
|
|
|
#include "rna_internal.hh" /* own include */
|
|
|
|
#ifdef RNA_RUNTIME
|
|
static void rna_Lattice_transform(Lattice *lt, const float mat[16], bool shape_keys)
|
|
{
|
|
BKE_lattice_transform(lt, (const float(*)[4])mat, shape_keys);
|
|
|
|
DEG_id_tag_update(<->id, 0);
|
|
}
|
|
|
|
static void rna_Lattice_update_gpu_tag(Lattice *lt)
|
|
{
|
|
BKE_lattice_batch_cache_dirty_tag(lt, BKE_LATTICE_BATCH_DIRTY_ALL);
|
|
}
|
|
|
|
#else
|
|
|
|
void RNA_api_lattice(StructRNA *srna)
|
|
{
|
|
FunctionRNA *func;
|
|
PropertyRNA *parm;
|
|
|
|
func = RNA_def_function(srna, "transform", "rna_Lattice_transform");
|
|
RNA_def_function_ui_description(func, "Transform lattice by a matrix");
|
|
parm = RNA_def_float_matrix(func, "matrix", 4, 4, nullptr, 0.0f, 0.0f, "", "Matrix", 0.0f, 0.0f);
|
|
RNA_def_parameter_flags(parm, PropertyFlag(0), PARM_REQUIRED);
|
|
RNA_def_boolean(func, "shape_keys", false, "", "Transform Shape Keys");
|
|
|
|
RNA_def_function(srna, "update_gpu_tag", "rna_Lattice_update_gpu_tag");
|
|
}
|
|
|
|
#endif
|