Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/lattice.c
| Show First 20 Lines • Show All 190 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_LT = { | IDTypeInfo IDType_ID_LT = { | ||||
| .id_code = ID_LT, | .id_code = ID_LT, | ||||
| .id_filter = FILTER_ID_LT, | .id_filter = FILTER_ID_LT, | ||||
| .main_listbase_index = INDEX_ID_LT, | .main_listbase_index = INDEX_ID_LT, | ||||
| .struct_size = sizeof(Lattice), | .struct_size = sizeof(Lattice), | ||||
| .name = "Lattice", | .name = "Lattice", | ||||
| .name_plural = "lattices", | .name_plural = "lattices", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_LATTICE, | .translation_context = BLT_I18NCONTEXT_ID_LATTICE, | ||||
| .flags = 0, | .flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = lattice_init_data, | .init_data = lattice_init_data, | ||||
| .copy_data = lattice_copy_data, | .copy_data = lattice_copy_data, | ||||
| .free_data = lattice_free_data, | .free_data = lattice_free_data, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = lattice_foreach_id, | .foreach_id = lattice_foreach_id, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| ▲ Show 20 Lines • Show All 602 Lines • Show Last 20 Lines | |||||