Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_math.cc
| Show All 19 Lines | |||||
| /** \file | /** \file | ||||
| * \ingroup cmpnodes | * \ingroup cmpnodes | ||||
| */ | */ | ||||
| #include "node_composite_util.hh" | #include "node_composite_util.hh" | ||||
| /* **************** SCALAR MATH ******************** */ | /* **************** SCALAR MATH ******************** */ | ||||
| namespace blender::nodes { | namespace blender::nodes::node_composite_math_cc { | ||||
| static void cmp_node_math_declare(NodeDeclarationBuilder &b) | static void cmp_node_math_declare(NodeDeclarationBuilder &b) | ||||
| { | { | ||||
| b.add_input<decl::Float>(N_("Value")).default_value(0.5f).min(-10000.0f).max(10000.0f); | b.add_input<decl::Float>(N_("Value")).default_value(0.5f).min(-10000.0f).max(10000.0f); | ||||
| b.add_input<decl::Float>(N_("Value"), "Value_001") | b.add_input<decl::Float>(N_("Value"), "Value_001") | ||||
| .default_value(0.5f) | .default_value(0.5f) | ||||
| .min(-10000.0f) | .min(-10000.0f) | ||||
| .max(10000.0f); | .max(10000.0f); | ||||
| b.add_input<decl::Float>(N_("Value"), "Value_002") | b.add_input<decl::Float>(N_("Value"), "Value_002") | ||||
| .default_value(0.5f) | .default_value(0.5f) | ||||
| .min(-10000.0f) | .min(-10000.0f) | ||||
| .max(10000.0f); | .max(10000.0f); | ||||
| b.add_output<decl::Float>(N_("Value")); | b.add_output<decl::Float>(N_("Value")); | ||||
| } | } | ||||
| } // namespace blender::nodes | } // namespace blender::nodes::node_composite_math_cc | ||||
| void register_node_type_cmp_math() | void register_node_type_cmp_math() | ||||
| { | { | ||||
| namespace file_ns = blender::nodes::node_composite_math_cc; | |||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| cmp_node_type_base(&ntype, CMP_NODE_MATH, "Math", NODE_CLASS_CONVERTER, 0); | cmp_node_type_base(&ntype, CMP_NODE_MATH, "Math", NODE_CLASS_CONVERTER, 0); | ||||
| ntype.declare = blender::nodes::cmp_node_math_declare; | ntype.declare = file_ns::cmp_node_math_declare; | ||||
| node_type_label(&ntype, node_math_label); | node_type_label(&ntype, node_math_label); | ||||
| node_type_update(&ntype, node_math_update); | node_type_update(&ntype, node_math_update); | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||