Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_cornerpin.cc
| Show All 17 Lines | |||||
| */ | */ | ||||
| /** \file | /** \file | ||||
| * \ingroup cmpnodes | * \ingroup cmpnodes | ||||
| */ | */ | ||||
| #include "node_composite_util.hh" | #include "node_composite_util.hh" | ||||
| namespace blender::nodes { | namespace blender::nodes::node_composite_cornerpin_cc { | ||||
| static void cmp_node_cornerpin_declare(NodeDeclarationBuilder &b) | static void cmp_node_cornerpin_declare(NodeDeclarationBuilder &b) | ||||
| { | { | ||||
| b.add_input<decl::Color>(N_("Image")).default_value({1.0f, 1.0f, 1.0f, 1.0f}); | b.add_input<decl::Color>(N_("Image")).default_value({1.0f, 1.0f, 1.0f, 1.0f}); | ||||
| b.add_input<decl::Vector>(N_("Upper Left")) | b.add_input<decl::Vector>(N_("Upper Left")) | ||||
| .default_value({0.0f, 1.0f, 0.0f}) | .default_value({0.0f, 1.0f, 0.0f}) | ||||
| .min(0.0f) | .min(0.0f) | ||||
| .max(1.0f); | .max(1.0f); | ||||
| b.add_input<decl::Vector>(N_("Upper Right")) | b.add_input<decl::Vector>(N_("Upper Right")) | ||||
| .default_value({1.0f, 1.0f, 0.0f}) | .default_value({1.0f, 1.0f, 0.0f}) | ||||
| .min(0.0f) | .min(0.0f) | ||||
| .max(1.0f); | .max(1.0f); | ||||
| b.add_input<decl::Vector>(N_("Lower Left")) | b.add_input<decl::Vector>(N_("Lower Left")) | ||||
| .default_value({0.0f, 0.0f, 0.0f}) | .default_value({0.0f, 0.0f, 0.0f}) | ||||
| .min(0.0f) | .min(0.0f) | ||||
| .max(1.0f); | .max(1.0f); | ||||
| b.add_input<decl::Vector>(N_("Lower Right")) | b.add_input<decl::Vector>(N_("Lower Right")) | ||||
| .default_value({1.0f, 0.0f, 0.0f}) | .default_value({1.0f, 0.0f, 0.0f}) | ||||
| .min(0.0f) | .min(0.0f) | ||||
| .max(1.0f); | .max(1.0f); | ||||
| b.add_output<decl::Color>(N_("Image")); | b.add_output<decl::Color>(N_("Image")); | ||||
| b.add_output<decl::Float>(N_("Plane")); | b.add_output<decl::Float>(N_("Plane")); | ||||
| } | } | ||||
| } // namespace blender::nodes | } // namespace blender::nodes::node_composite_cornerpin_cc | ||||
| void register_node_type_cmp_cornerpin() | void register_node_type_cmp_cornerpin() | ||||
| { | { | ||||
| namespace file_ns = blender::nodes::node_composite_cornerpin_cc; | |||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| cmp_node_type_base(&ntype, CMP_NODE_CORNERPIN, "Corner Pin", NODE_CLASS_DISTORT); | cmp_node_type_base(&ntype, CMP_NODE_CORNERPIN, "Corner Pin", NODE_CLASS_DISTORT); | ||||
| ntype.declare = blender::nodes::cmp_node_cornerpin_declare; | ntype.declare = file_ns::cmp_node_cornerpin_declare; | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||