Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/pointcloud.cc
| Show First 20 Lines • Show All 168 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_PT = { | IDTypeInfo IDType_ID_PT = { | ||||
| /* id_code */ ID_PT, | /* id_code */ ID_PT, | ||||
| /* id_filter */ FILTER_ID_PT, | /* id_filter */ FILTER_ID_PT, | ||||
| /* main_listbase_index */ INDEX_ID_PT, | /* main_listbase_index */ INDEX_ID_PT, | ||||
| /* struct_size */ sizeof(PointCloud), | /* struct_size */ sizeof(PointCloud), | ||||
| /* name */ "PointCloud", | /* name */ "PointCloud", | ||||
| /* name_plural */ "pointclouds", | /* name_plural */ "pointclouds", | ||||
| /* translation_context */ BLT_I18NCONTEXT_ID_POINTCLOUD, | /* translation_context */ BLT_I18NCONTEXT_ID_POINTCLOUD, | ||||
| /* flags */ 0, | /* flags */ IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| /* init_data */ pointcloud_init_data, | /* init_data */ pointcloud_init_data, | ||||
| /* copy_data */ pointcloud_copy_data, | /* copy_data */ pointcloud_copy_data, | ||||
| /* free_data */ pointcloud_free_data, | /* free_data */ pointcloud_free_data, | ||||
| /* make_local */ nullptr, | /* make_local */ nullptr, | ||||
| /* foreach_id */ pointcloud_foreach_id, | /* foreach_id */ pointcloud_foreach_id, | ||||
| /* foreach_cache */ nullptr, | /* foreach_cache */ nullptr, | ||||
| /* owner_get */ nullptr, | /* owner_get */ nullptr, | ||||
| ▲ Show 20 Lines • Show All 250 Lines • Show Last 20 Lines | |||||