Listing the "Blender Foundation" as copyright holder implied the Blender Foundation holds copyright to files which may include work from many developers. While keeping copyright on headers makes sense for isolated libraries, Blender's own code may be refactored or moved between files in a way that makes the per file copyright holders less meaningful. Copyright references to the "Blender Foundation" have been replaced with "Blender Authors", with the exception of `./extern/` since these this contains libraries which are more isolated, any changed to license headers there can be handled on a case-by-case basis. Some directories in `./intern/` have also been excluded: - `./intern/cycles/` it's own `AUTHORS` file is planned. - `./intern/opensubdiv/`. An "AUTHORS" file has been added, using the chromium projects authors file as a template. Design task: #110784 Ref !110783.
37 lines
824 B
C++
37 lines
824 B
C++
/* SPDX-FileCopyrightText: 2008 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup editors
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
struct Base;
|
|
struct Object;
|
|
struct SelectPick_Params;
|
|
struct UndoType;
|
|
struct wmKeyConfig;
|
|
|
|
/* `lattice_ops.cc` */
|
|
|
|
void ED_operatortypes_lattice();
|
|
void ED_keymap_lattice(wmKeyConfig *keyconf);
|
|
|
|
/* `editlattice_select.cc` */
|
|
|
|
bool ED_lattice_flags_set(Object *obedit, int flag);
|
|
/**
|
|
* \return True when pick finds an element or the selection changed.
|
|
*/
|
|
bool ED_lattice_select_pick(bContext *C, const int mval[2], const SelectPick_Params *params);
|
|
|
|
bool ED_lattice_deselect_all_multi_ex(Base **bases, uint bases_len);
|
|
bool ED_lattice_deselect_all_multi(bContext *C);
|
|
|
|
/* `editlattice_undo.cc` */
|
|
|
|
/** Export for ED_undo_sys. */
|
|
void ED_lattice_undosys_type(UndoType *ut);
|