Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/geometry/nodes/node_geo_input_mesh_island.cc
| /* SPDX-License-Identifier: GPL-2.0-or-later */ | /* SPDX-License-Identifier: GPL-2.0-or-later */ | ||||
| #include "DNA_mesh_types.h" | #include "DNA_mesh_types.h" | ||||
| #include "DNA_meshdata_types.h" | #include "DNA_meshdata_types.h" | ||||
| #include "BKE_mesh.h" | #include "BKE_mesh.h" | ||||
| #include "BLI_array.hh" | |||||
| #include "BLI_disjoint_set.hh" | #include "BLI_disjoint_set.hh" | ||||
| #include "BLI_vector_set.hh" | |||||
| #include "BLI_virtual_array.hh" | |||||
| #include "node_geometry_util.hh" | #include "node_geometry_util.hh" | ||||
| namespace blender::nodes::node_geo_input_mesh_island_cc { | namespace blender::nodes::node_geo_input_mesh_island_cc { | ||||
| static void node_declare(NodeDeclarationBuilder &b) | static void node_declare(NodeDeclarationBuilder &b) | ||||
| { | { | ||||
| b.add_output<decl::Int>(N_("Island Index")) | b.add_output<decl::Int>(N_("Island Index")) | ||||
| ▲ Show 20 Lines • Show All 122 Lines • Show Last 20 Lines | |||||