Blender V4.3
blender::nodes::node_geo_curve_to_points_cc Namespace Reference

Functions

static void node_declare (NodeDeclarationBuilder &b)
static void node_layout (uiLayout *layout, bContext *, PointerRNA *ptr)
static void node_init (bNodeTree *, bNode *node)
static void fill_rotation_attribute (const Span< float3 > tangents, const Span< float3 > normals, MutableSpan< math::Quaternion > rotations)
static void copy_curve_domain_attributes (const AttributeAccessor curve_attributes, MutableAttributeAccessor point_attributes)
static PointCloudpointcloud_from_curves (bke::CurvesGeometry curves, const std::optional< StringRef > &tangent_id, const std::optional< StringRef > &normal_id, const std::optional< StringRef > &rotation_id)
static void curve_to_points (GeometrySet &geometry_set, GeoNodeExecParams params, const GeometryNodeCurveResampleMode mode, geometry::ResampleCurvesOutputAttributeIDs resample_attributes, const std::optional< StringRef > &rotation_anonymous_id)
static void grease_pencil_to_points (GeometrySet &geometry_set, GeoNodeExecParams params, const GeometryNodeCurveResampleMode mode, geometry::ResampleCurvesOutputAttributeIDs resample_attributes, const std::optional< StringRef > &rotation_anonymous_id, const AttributeFilter &attribute_filter)
static void node_geo_exec (GeoNodeExecParams params)
static void node_rna (StructRNA *srna)
static void node_register ()

Function Documentation

◆ copy_curve_domain_attributes()

◆ curve_to_points()

◆ fill_rotation_attribute()

void blender::nodes::node_geo_curve_to_points_cc::fill_rotation_attribute ( const Span< float3 > tangents,
const Span< float3 > normals,
MutableSpan< math::Quaternion > rotations )
static

◆ grease_pencil_to_points()

void blender::nodes::node_geo_curve_to_points_cc::grease_pencil_to_points ( GeometrySet & geometry_set,
GeoNodeExecParams params,
const GeometryNodeCurveResampleMode mode,
geometry::ResampleCurvesOutputAttributeIDs resample_attributes,
const std::optional< StringRef > & rotation_anonymous_id,
const AttributeFilter & attribute_filter )
static

◆ node_declare()

◆ node_geo_exec()

◆ node_init()

void blender::nodes::node_geo_curve_to_points_cc::node_init ( bNodeTree * ,
bNode * node )
static

Definition at line 69 of file node_geo_curve_to_points.cc.

References data, GEO_NODE_CURVE_RESAMPLE_COUNT, and bNode::storage.

Referenced by node_register().

◆ node_layout()

void blender::nodes::node_geo_curve_to_points_cc::node_layout ( uiLayout * layout,
bContext * ,
PointerRNA * ptr )
static

Definition at line 64 of file node_geo_curve_to_points.cc.

References ptr, UI_ITEM_NONE, and uiItemR().

Referenced by node_register().

◆ node_register()

◆ node_rna()

void blender::nodes::node_geo_curve_to_points_cc::node_rna ( StructRNA * srna)
static

◆ pointcloud_from_curves()