Differential D13330 Diff 45139 source/blender/nodes/geometry/nodes/node_geo_set_spline_resolution.cc
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/geometry/nodes/node_geo_set_spline_resolution.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 "BKE_spline.hh" | #include "BKE_spline.hh" | ||||
| #include "node_geometry_util.hh" | #include "node_geometry_util.hh" | ||||
| namespace blender::nodes { | namespace blender::nodes::node_geo_set_spline_resolution_cc { | ||||
| static void geo_node_set_spline_resolution_declare(NodeDeclarationBuilder &b) | static void geo_node_set_spline_resolution_declare(NodeDeclarationBuilder &b) | ||||
| { | { | ||||
| b.add_input<decl::Geometry>(N_("Geometry")).supported_type(GEO_COMPONENT_TYPE_CURVE); | b.add_input<decl::Geometry>(N_("Geometry")).supported_type(GEO_COMPONENT_TYPE_CURVE); | ||||
| 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_input<decl::Int>(N_("Resolution")).default_value(12).supports_field(); | b.add_input<decl::Int>(N_("Resolution")).default_value(12).supports_field(); | ||||
| b.add_output<decl::Geometry>(N_("Geometry")); | b.add_output<decl::Geometry>(N_("Geometry")); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 46 Lines • ▼ Show 20 Lines | static void geo_node_set_spline_resolution_exec(GeoNodeExecParams params) | ||||
| if (only_poly) { | if (only_poly) { | ||||
| params.error_message_add(NodeWarningType::Warning, | params.error_message_add(NodeWarningType::Warning, | ||||
| TIP_("Input geometry does not contain a Bezier or NURB spline")); | TIP_("Input geometry does not contain a Bezier or NURB spline")); | ||||
| } | } | ||||
| params.set_output("Geometry", std::move(geometry_set)); | params.set_output("Geometry", std::move(geometry_set)); | ||||
| } | } | ||||
| } // namespace blender::nodes | } // namespace blender::nodes::node_geo_set_spline_resolution_cc | ||||
| void register_node_type_geo_set_spline_resolution() | void register_node_type_geo_set_spline_resolution() | ||||
| { | { | ||||
| namespace file_ns = blender::nodes::node_geo_set_spline_resolution_cc; | |||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| geo_node_type_base( | geo_node_type_base( | ||||
| &ntype, GEO_NODE_SET_SPLINE_RESOLUTION, "Set Spline Resolution", NODE_CLASS_GEOMETRY, 0); | &ntype, GEO_NODE_SET_SPLINE_RESOLUTION, "Set Spline Resolution", NODE_CLASS_GEOMETRY, 0); | ||||
| ntype.geometry_node_execute = blender::nodes::geo_node_set_spline_resolution_exec; | ntype.geometry_node_execute = file_ns::geo_node_set_spline_resolution_exec; | ||||
| ntype.declare = blender::nodes::geo_node_set_spline_resolution_declare; | ntype.declare = file_ns::geo_node_set_spline_resolution_declare; | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||