|
Blender
V3.3
|
#include "MEM_guardedalloc.h"#include "BLI_utildefines.h"#include "BLI_ghash.h"#include "BLI_math_vector.h"#include "BLI_rand.h"#include "BLT_translation.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 "RNA_prototypes.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 (struct Scene *UNUSED(scene), 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 51 of file MOD_build.c.
|
static |
Definition at line 42 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 56 of file MOD_build.c.
References BKE_mesh_new_nomain_from_template(), BKE_scene_ctime_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(), CLAMP, CustomData_copy_data(), DEG_get_input_scene(), ModifierEvalContext::depsgraph, dest, MLoop::e, Mesh::edata, 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, Mesh::pdata, POINTER_AS_INT, POINTER_FROM_INT, range_vn_i(), result, scene, BuildModifierData::seed, BuildModifierData::start, Mesh::totedge, MPoly::totloop, Mesh::totpoly, Mesh::totvert, MLoop::v, MEdge::v1, MEdge::v2, and Mesh::vdata.
Definition at line 272 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 308 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 296 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 287 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 315 of file MOD_build.c.