Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/geometry/nodes/node_geo_mesh_to_curve.cc
| Show All 12 Lines | |||||
| * along with this program; if not, write to the Free Software Foundation, | * along with this program; if not, write to the Free Software Foundation, | ||||
| * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| */ | */ | ||||
| #include "GEO_mesh_to_curve.hh" | #include "GEO_mesh_to_curve.hh" | ||||
| #include "node_geometry_util.hh" | #include "node_geometry_util.hh" | ||||
| namespace blender::nodes { | namespace blender::nodes::node_geo_mesh_to_curve_cc { | ||||
| static void geo_node_legacy_mesh_to_curve_declare(NodeDeclarationBuilder &b) | static void geo_node_legacy_mesh_to_curve_declare(NodeDeclarationBuilder &b) | ||||
| { | { | ||||
| b.add_input<decl::Geometry>(N_("Mesh")).supported_type(GEO_COMPONENT_TYPE_MESH); | b.add_input<decl::Geometry>(N_("Mesh")).supported_type(GEO_COMPONENT_TYPE_MESH); | ||||
| b.add_input<decl::Bool>(N_("Selection")).default_value(true).hide_value().supports_field(); | b.add_input<decl::Bool>(N_("Selection")).default_value(true).hide_value().supports_field(); | ||||
| b.add_output<decl::Geometry>(N_("Curve")); | b.add_output<decl::Geometry>(N_("Curve")); | ||||
| } | } | ||||
| Show All 21 Lines | geometry_set.modify_geometry_sets([&](GeometrySet &geometry_set) { | ||||
| std::unique_ptr<CurveEval> curve = geometry::mesh_to_curve_convert(component, selection); | std::unique_ptr<CurveEval> curve = geometry::mesh_to_curve_convert(component, selection); | ||||
| geometry_set.replace_curve(curve.release()); | geometry_set.replace_curve(curve.release()); | ||||
| geometry_set.keep_only({GEO_COMPONENT_TYPE_CURVE, GEO_COMPONENT_TYPE_INSTANCES}); | geometry_set.keep_only({GEO_COMPONENT_TYPE_CURVE, GEO_COMPONENT_TYPE_INSTANCES}); | ||||
| }); | }); | ||||
| params.set_output("Curve", std::move(geometry_set)); | params.set_output("Curve", std::move(geometry_set)); | ||||
| } | } | ||||
| } // namespace blender::nodes | } // namespace blender::nodes::node_geo_mesh_to_curve_cc | ||||
| void register_node_type_geo_mesh_to_curve() | void register_node_type_geo_mesh_to_curve() | ||||
| { | { | ||||
| namespace file_ns = blender::nodes::node_geo_mesh_to_curve_cc; | |||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| geo_node_type_base(&ntype, GEO_NODE_MESH_TO_CURVE, "Mesh to Curve", NODE_CLASS_GEOMETRY, 0); | geo_node_type_base(&ntype, GEO_NODE_MESH_TO_CURVE, "Mesh to Curve", NODE_CLASS_GEOMETRY, 0); | ||||
| ntype.declare = blender::nodes::geo_node_legacy_mesh_to_curve_declare; | ntype.declare = file_ns::geo_node_legacy_mesh_to_curve_declare; | ||||
| ntype.geometry_node_execute = blender::nodes::geo_node_legacy_mesh_to_curve_exec; | ntype.geometry_node_execute = file_ns::geo_node_legacy_mesh_to_curve_exec; | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||