Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/nodes/geometry/nodes/node_geo_distribute_points_on_faces.cc')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_distribute_points_on_faces.cc17
1 files changed, 11 insertions, 6 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_distribute_points_on_faces.cc b/source/blender/nodes/geometry/nodes/node_geo_distribute_points_on_faces.cc
index fa439b04da0..4e274bd956b 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_distribute_points_on_faces.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_distribute_points_on_faces.cc
@@ -38,7 +38,7 @@
using blender::bke::GeometryInstanceGroup;
-namespace blender::nodes {
+namespace blender::nodes::distribute_points_on_faces_node {
static void geo_node_point_distribute_points_on_faces_declare(NodeDeclarationBuilder &b)
{
@@ -573,7 +573,7 @@ static void geo_node_point_distribute_points_on_faces_exec(GeoNodeExecParams par
}
}
-} // namespace blender::nodes
+} // namespace blender::nodes::distribute_points_on_faces_node
void register_node_type_geo_distribute_points_on_faces()
{
@@ -584,10 +584,15 @@ void register_node_type_geo_distribute_points_on_faces()
"Distribute Points on Faces",
NODE_CLASS_GEOMETRY,
0);
- node_type_update(&ntype, blender::nodes::node_point_distribute_points_on_faces_update);
+ node_type_update(&ntype,
+ blender::nodes::distribute_points_on_faces_node::
+ node_point_distribute_points_on_faces_update);
node_type_size(&ntype, 170, 100, 320);
- ntype.declare = blender::nodes::geo_node_point_distribute_points_on_faces_declare;
- ntype.geometry_node_execute = blender::nodes::geo_node_point_distribute_points_on_faces_exec;
- ntype.draw_buttons = blender::nodes::geo_node_point_distribute_points_on_faces_layout;
+ ntype.declare = blender::nodes::distribute_points_on_faces_node::
+ geo_node_point_distribute_points_on_faces_declare;
+ ntype.geometry_node_execute = blender::nodes::distribute_points_on_faces_node::
+ geo_node_point_distribute_points_on_faces_exec;
+ ntype.draw_buttons = blender::nodes::distribute_points_on_faces_node::
+ geo_node_point_distribute_points_on_faces_layout;
nodeRegisterType(&ntype);
}