|
Blender
V2.93
|
#include "MEM_guardedalloc.h"#include "BLI_utildefines.h"#include "BLI_ghash.h"#include "BLI_math_vector.h"#include "BLI_rand.h"#include "DNA_defaults.h"#include "DNA_mesh_types.h"#include "DNA_meshdata_types.h"#include "DNA_object_types.h"#include "DNA_screen_types.h"#include "DEG_depsgraph_query.h"#include "BKE_context.h"#include "BKE_mesh.h"#include "BKE_modifier.h"#include "BKE_particle.h"#include "BKE_scene.h"#include "BKE_screen.h"#include "UI_interface.h"#include "UI_resources.h"#include "RNA_access.h"#include "MOD_modifiertypes.h"#include "MOD_ui_common.h"Go to the source code of this file.
Functions | |
| static void | initData (ModifierData *md) |
| static bool | dependsOnTime (ModifierData *UNUSED(md)) |
| static Mesh * | modifyMesh (ModifierData *md, const ModifierEvalContext *ctx, struct Mesh *mesh) |
| static void | panel_draw (const bContext *UNUSED(C), Panel *panel) |
| static void | random_panel_header_draw (const bContext *UNUSED(C), Panel *panel) |
| static void | random_panel_draw (const bContext *UNUSED(C), Panel *panel) |
| static void | panelRegister (ARegionType *region_type) |
Variables | |
| ModifierTypeInfo | modifierType_Build |
|
static |
Definition at line 64 of file MOD_build.c.
|
static |
Definition at line 55 of file MOD_build.c.
References BLI_assert, DNA_struct_default_get, MEMCMP_STRUCT_AFTER_IS_ZERO, and MEMCPY_STRUCT_AFTER.
|
static |
Definition at line 69 of file MOD_build.c.
References BKE_mesh_new_nomain_from_template(), BKE_scene_frame_get(), BLI_array_randomize(), BLI_assert, BLI_ghash_ensure_p(), BLI_ghash_free(), BLI_ghash_haskey(), BLI_ghash_insert(), BLI_ghash_int_new(), BLI_ghash_len(), BLI_ghash_lookup(), BLI_ghashIterator_getKey(), BLI_ghashIterator_getValue(), Mesh_Runtime::cd_dirty_vert, CD_MASK_NORMAL, CLAMP, CustomData_copy_data(), DEG_get_input_scene(), ModifierEvalContext::depsgraph, MLoop::e, faceMap, BuildModifierData::flag, CCL_NAMESPACE_BEGIN::frac(), GHASH_ITER, Mesh::ldata, BuildModifierData::length, MPoly::loopstart, Mesh::medge, MEM_freeN, MEM_malloc_arrayN, mesh, Mesh::mloop, MOD_BUILD_FLAG_RANDOMIZE, MOD_BUILD_FLAG_REVERSE, Mesh::mpoly, Mesh::mvert, NULL, POINTER_AS_INT, POINTER_FROM_INT, range_vn_i(), result, Mesh::runtime, scene, BuildModifierData::seed, BuildModifierData::start, Mesh::totedge, MPoly::totloop, Mesh::totpoly, Mesh::totvert, MLoop::v, MEdge::v1, and MEdge::v2.
Definition at line 289 of file MOD_build.c.
References Panel::layout, modifier_panel_end(), modifier_panel_get_property_pointers(), NULL, ptr, uiItemR(), and uiLayoutSetPropSep().
Referenced by panelRegister().
|
static |
Definition at line 325 of file MOD_build.c.
References eModifierType_Build, modifier_panel_register(), modifier_subpanel_register(), panel_draw(), random_panel_draw(), and random_panel_header_draw().
Definition at line 313 of file MOD_build.c.
References Panel::layout, modifier_panel_get_property_pointers(), NULL, ptr, RNA_boolean_get(), uiItemR(), uiLayoutSetActive(), and uiLayoutSetPropSep().
Referenced by panelRegister().
Definition at line 304 of file MOD_build.c.
References Panel::layout, modifier_panel_get_property_pointers(), NULL, ptr, and uiItemR().
Referenced by panelRegister().
| ModifierTypeInfo modifierType_Build |
Definition at line 332 of file MOD_build.c.