Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_normal.cc
| Show All 19 Lines | |||||
| /** \file | /** \file | ||||
| * \ingroup cmpnodes | * \ingroup cmpnodes | ||||
| */ | */ | ||||
| #include "node_composite_util.hh" | #include "node_composite_util.hh" | ||||
| /* **************** NORMAL ******************** */ | /* **************** NORMAL ******************** */ | ||||
| namespace blender::nodes { | namespace blender::nodes::node_composite_normal_cc { | ||||
| static void cmp_node_normal_declare(NodeDeclarationBuilder &b) | static void cmp_node_normal_declare(NodeDeclarationBuilder &b) | ||||
| { | { | ||||
| b.add_input<decl::Vector>(N_("Normal")) | b.add_input<decl::Vector>(N_("Normal")) | ||||
| .default_value({1.0f, 1.0f, 1.0f}) | .default_value({1.0f, 1.0f, 1.0f}) | ||||
| .min(-1.0f) | .min(-1.0f) | ||||
| .max(1.0f) | .max(1.0f) | ||||
| .subtype(PROP_DIRECTION); | .subtype(PROP_DIRECTION); | ||||
| b.add_output<decl::Vector>(N_("Normal")); | b.add_output<decl::Vector>(N_("Normal")); | ||||
| b.add_output<decl::Float>(N_("Dot")); | b.add_output<decl::Float>(N_("Dot")); | ||||
| } | } | ||||
| } // namespace blender::nodes | } // namespace blender::nodes::node_composite_normal_cc | ||||
| void register_node_type_cmp_normal() | void register_node_type_cmp_normal() | ||||
| { | { | ||||
| namespace file_ns = blender::nodes::node_composite_normal_cc; | |||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| cmp_node_type_base(&ntype, CMP_NODE_NORMAL, "Normal", NODE_CLASS_OP_VECTOR, 0); | cmp_node_type_base(&ntype, CMP_NODE_NORMAL, "Normal", NODE_CLASS_OP_VECTOR); | ||||
| ntype.declare = blender::nodes::cmp_node_normal_declare; | ntype.declare = file_ns::cmp_node_normal_declare; | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||