Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/mball.c
| Show First 20 Lines • Show All 182 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_MB = { | IDTypeInfo IDType_ID_MB = { | ||||
| .id_code = ID_MB, | .id_code = ID_MB, | ||||
| .id_filter = FILTER_ID_MB, | .id_filter = FILTER_ID_MB, | ||||
| .main_listbase_index = INDEX_ID_MB, | .main_listbase_index = INDEX_ID_MB, | ||||
| .struct_size = sizeof(MetaBall), | .struct_size = sizeof(MetaBall), | ||||
| .name = "Metaball", | .name = "Metaball", | ||||
| .name_plural = "metaballs", | .name_plural = "metaballs", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_METABALL, | .translation_context = BLT_I18NCONTEXT_ID_METABALL, | ||||
| .flags = 0, | .flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = metaball_init_data, | .init_data = metaball_init_data, | ||||
| .copy_data = metaball_copy_data, | .copy_data = metaball_copy_data, | ||||
| .free_data = metaball_free_data, | .free_data = metaball_free_data, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = metaball_foreach_id, | .foreach_id = metaball_foreach_id, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| ▲ Show 20 Lines • Show All 559 Lines • Show Last 20 Lines | |||||