|
Blender
V2.93
|
#include "UI_interface.h"#include "UI_resources.h"#include "NOD_math_functions.hh"#include "node_geometry_util.hh"Go to the source code of this file.
Namespaces | |
| blender | |
| blender::nodes | |
Functions | |
| static void | geo_node_attribute_compare_layout (uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr) |
| static void | geo_node_attribute_compare_init (bNodeTree *UNUSED(tree), bNode *node) |
| static bool | operation_tests_equality (const NodeAttributeCompare &node_storage) |
| static void | blender::nodes::geo_node_attribute_compare_update (bNodeTree *UNUSED(ntree), bNode *node) |
| static void | blender::nodes::do_math_operation (const FloatReadAttribute &input_a, const FloatReadAttribute &input_b, const FloatCompareOperation operation, MutableSpan< bool > span_result) |
| static void | blender::nodes::do_equal_operation_float (const FloatReadAttribute &input_a, const FloatReadAttribute &input_b, const float threshold, MutableSpan< bool > span_result) |
| static void | blender::nodes::do_equal_operation_float3 (const Float3ReadAttribute &input_a, const Float3ReadAttribute &input_b, const float threshold, MutableSpan< bool > span_result) |
| static void | blender::nodes::do_equal_operation_color4f (const Color4fReadAttribute &input_a, const Color4fReadAttribute &input_b, const float threshold, MutableSpan< bool > span_result) |
| static void | blender::nodes::do_equal_operation_bool (const BooleanReadAttribute &input_a, const BooleanReadAttribute &input_b, const float UNUSED(threshold), MutableSpan< bool > span_result) |
| static void | blender::nodes::do_not_equal_operation_float (const FloatReadAttribute &input_a, const FloatReadAttribute &input_b, const float threshold, MutableSpan< bool > span_result) |
| static void | blender::nodes::do_not_equal_operation_float3 (const Float3ReadAttribute &input_a, const Float3ReadAttribute &input_b, const float threshold, MutableSpan< bool > span_result) |
| static void | blender::nodes::do_not_equal_operation_color4f (const Color4fReadAttribute &input_a, const Color4fReadAttribute &input_b, const float threshold, MutableSpan< bool > span_result) |
| static void | blender::nodes::do_not_equal_operation_bool (const BooleanReadAttribute &input_a, const BooleanReadAttribute &input_b, const float UNUSED(threshold), MutableSpan< bool > span_result) |
| static CustomDataType | blender::nodes::get_data_type (GeometryComponent &component, const GeoNodeExecParams ¶ms, const NodeAttributeCompare &node_storage) |
| static AttributeDomain | blender::nodes::get_result_domain (const GeometryComponent &component, const GeoNodeExecParams ¶ms, StringRef result_name) |
| static void | blender::nodes::attribute_compare_calc (GeometryComponent &component, const GeoNodeExecParams ¶ms) |
| static void | blender::nodes::geo_node_attribute_compare_exec (GeoNodeExecParams params) |
| void | register_node_type_geo_attribute_compare () |
Variables | |
| static bNodeSocketTemplate | geo_node_attribute_compare_in [] |
| static bNodeSocketTemplate | geo_node_attribute_compare_out [] |
Definition at line 55 of file node_geo_attribute_compare.cc.
References data, GEO_NODE_ATTRIBUTE_INPUT_ATTRIBUTE, MEM_callocN, node, and NODE_FLOAT_COMPARE_GREATER_THAN.
Referenced by register_node_type_geo_attribute_compare().
|
static |
Definition at line 44 of file node_geo_attribute_compare.cc.
References IFACE_, ptr, uiItemR(), uiLayoutSetPropDecorate(), and uiLayoutSetPropSep().
Referenced by register_node_type_geo_attribute_compare().
|
static |
Definition at line 65 of file node_geo_attribute_compare.cc.
References ELEM, NODE_FLOAT_COMPARE_EQUAL, NODE_FLOAT_COMPARE_NOT_EQUAL, and NodeAttributeCompare::operation.
Referenced by blender::nodes::attribute_compare_calc(), blender::nodes::geo_node_attribute_compare_update(), and blender::nodes::get_data_type().
| void register_node_type_geo_attribute_compare | ( | void | ) |
Definition at line 338 of file node_geo_attribute_compare.cc.
References bNodeType::draw_buttons, GEO_NODE_ATTRIBUTE_COMPARE, blender::nodes::geo_node_attribute_compare_exec(), geo_node_attribute_compare_in, geo_node_attribute_compare_init(), geo_node_attribute_compare_layout(), geo_node_attribute_compare_out, blender::nodes::geo_node_attribute_compare_update(), geo_node_type_base(), bNodeType::geometry_node_execute, NODE_CLASS_ATTRIBUTE, node_copy_standard_storage(), node_free_standard_storage(), node_type_init(), node_type_socket_templates(), node_type_storage(), node_type_update(), and nodeRegisterType().
Referenced by registerGeometryNodes().
|
static |
Definition at line 24 of file node_geo_attribute_compare.cc.
Referenced by register_node_type_geo_attribute_compare().
|
static |
Definition at line 39 of file node_geo_attribute_compare.cc.
Referenced by register_node_type_geo_attribute_compare().