Blender  V2.93
Namespaces | Functions | Variables
node_geo_attribute_separate_xyz.cc File Reference
#include "UI_interface.h"
#include "UI_resources.h"
#include "node_geometry_util.hh"

Go to the source code of this file.

Namespaces

 blender
 
 blender::nodes
 

Functions

static void geo_node_attribute_separate_xyz_layout (uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr)
 
static void blender::nodes::geo_node_attribute_separate_xyz_init (bNodeTree *UNUSED(tree), bNode *node)
 
static void blender::nodes::geo_node_attribute_separate_xyz_update (bNodeTree *UNUSED(ntree), bNode *node)
 
static void blender::nodes::extract_input (const int index, const Span< float3 > &input, MutableSpan< float > result)
 
static AttributeDomain blender::nodes::get_result_domain (const GeometryComponent &component, const GeoNodeExecParams &params, StringRef result_name_x, StringRef result_name_y, StringRef result_name_z)
 
static void blender::nodes::separate_attribute (GeometryComponent &component, const GeoNodeExecParams &params)
 
static void blender::nodes::geo_node_attribute_separate_xyz_exec (GeoNodeExecParams params)
 
void register_node_type_geo_attribute_separate_xyz ()
 

Variables

static bNodeSocketTemplate geo_node_attribute_separate_xyz_in []
 
static bNodeSocketTemplate geo_node_attribute_separate_xyz_out []
 

Function Documentation

◆ geo_node_attribute_separate_xyz_layout()

static void geo_node_attribute_separate_xyz_layout ( uiLayout layout,
bContext UNUSEDC,
PointerRNA ptr 
)
static

◆ register_node_type_geo_attribute_separate_xyz()

void register_node_type_geo_attribute_separate_xyz ( void  )

Variable Documentation

◆ geo_node_attribute_separate_xyz_in

bNodeSocketTemplate geo_node_attribute_separate_xyz_in[]
static
Initial value:
= {
{SOCK_GEOMETRY, N_("Geometry")},
{SOCK_STRING, N_("Vector")},
{SOCK_VECTOR, N_("Vector"), 0.0f, 0.0f, 0.0f, 0.0f, -FLT_MAX, FLT_MAX},
{SOCK_STRING, N_("Result X")},
{SOCK_STRING, N_("Result Y")},
{SOCK_STRING, N_("Result Z")},
{-1, ""},
}
#define N_(msgid)
@ SOCK_VECTOR
@ SOCK_GEOMETRY
@ SOCK_STRING

Definition at line 22 of file node_geo_attribute_separate_xyz.cc.

Referenced by register_node_type_geo_attribute_separate_xyz().

◆ geo_node_attribute_separate_xyz_out

bNodeSocketTemplate geo_node_attribute_separate_xyz_out[]
static
Initial value:
= {
{SOCK_GEOMETRY, N_("Geometry")},
{-1, ""},
}

Definition at line 32 of file node_geo_attribute_separate_xyz.cc.

Referenced by register_node_type_geo_attribute_separate_xyz().