Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_normal.cc
| Show All 18 Lines | |||||
| /** \file | /** \file | ||||
| * \ingroup cmpnodes | * \ingroup cmpnodes | ||||
| */ | */ | ||||
| #include "node_composite_util.hh" | #include "node_composite_util.hh" | ||||
| /* **************** NORMAL ******************** */ | /* **************** NORMAL ******************** */ | ||||
| static bNodeSocketTemplate cmp_node_normal_in[] = { | |||||
| {SOCK_VECTOR, N_("Normal"), 0.0f, 0.0f, 1.0f, 0.0f, -1.0f, 1.0f, PROP_DIRECTION}, | |||||
| {-1, ""}, | |||||
| }; | |||||
| static bNodeSocketTemplate cmp_node_normal_out[] = { | |||||
| {SOCK_VECTOR, N_("Normal"), 0.0f, 0.0f, 1.0f, 0.0f, -1.0f, 1.0f, PROP_DIRECTION}, | |||||
| {SOCK_FLOAT, N_("Dot")}, | |||||
| {-1, ""}, | |||||
| }; | |||||
| void register_node_type_cmp_normal(void) | namespace blender::nodes { | ||||
| static void cmp_node_normal_declare(NodeDeclarationBuilder &b) | |||||
| { | |||||
| b.add_input<decl::Vector>(N_("Normal")) | |||||
| .default_value({1.0f, 1.0f, 1.0f}) | |||||
| .min(-1.0f) | |||||
| .max(1.0f) | |||||
| .subtype(PROP_DIRECTION); | |||||
| b.add_output<decl::Vector>(N_("Normal")); | |||||
| b.add_output<decl::Float>(N_("Dot")); | |||||
| } | |||||
| } // namespace blender::nodes | |||||
| void register_node_type_cmp_normal() | |||||
| { | { | ||||
| 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, 0); | ||||
| node_type_socket_templates(&ntype, cmp_node_normal_in, cmp_node_normal_out); | ntype.declare = blender::nodes::cmp_node_normal_declare; | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||