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_remesh_voxel.cc')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_remesh_voxel.cc60
1 files changed, 60 insertions, 0 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_remesh_voxel.cc b/source/blender/nodes/geometry/nodes/node_geo_remesh_voxel.cc
new file mode 100644
index 00000000000..a9f5719d5f6
--- /dev/null
+++ b/source/blender/nodes/geometry/nodes/node_geo_remesh_voxel.cc
@@ -0,0 +1,60 @@
+/*
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#include "UI_interface.h"
+
+#include "BKE_mesh_remesh_voxel.h"
+
+#include "node_geometry_util.hh"
+
+static bNodeSocketTemplate geo_node_remesh_voxel_in[] = {
+ {SOCK_GEOMETRY, N_("Geometry")},
+ {SOCK_FLOAT, N_("Voxel Size"), 1.0f, 0, 0, 0, 0.01f, FLT_MAX},
+ {SOCK_FLOAT, N_("Adaptivity"), 0.0f, 0, 0, 0, 0.0f, 1.0f},
+ {-1, ""},
+};
+
+static bNodeSocketTemplate geo_node_remesh_voxel_out[] = {
+ {SOCK_GEOMETRY, N_("Geometry")},
+ {-1, ""},
+};
+
+namespace blender::nodes {
+static void geo_node_remesh_voxel_exec(GeoNodeExecParams params)
+{
+ GeometrySet geometry_set = params.extract_input<GeometrySet>("Geometry");
+ const float voxel_size = params.extract_input<float>("Voxel Size");
+ const float adaptivity = params.extract_input<float>("Adaptivity");
+
+ if (geometry_set.has_mesh()) {
+ const Mesh *input_mesh = geometry_set.get_mesh_for_read();
+
+ Mesh *output_mesh = BKE_mesh_remesh_voxel(input_mesh, voxel_size, adaptivity, 0.0f);
+ geometry_set.replace_mesh(output_mesh);
+ }
+ params.set_output("Geometry", std::move(geometry_set));
+}
+} // namespace blender::nodes
+
+void register_node_type_geo_remesh_voxel()
+{
+ static bNodeType ntype;
+
+ geo_node_type_base(&ntype, GEO_NODE_REMESH_VOXEL, "Voxel Remesh", NODE_CLASS_GEOMETRY, 0);
+ node_type_socket_templates(&ntype, geo_node_remesh_voxel_in, geo_node_remesh_voxel_out);
+ ntype.geometry_node_execute = blender::nodes::geo_node_remesh_voxel_exec;
+ nodeRegisterType(&ntype);
+}