28 const bNode *node =
b.node_or_null();
31 if (node !=
nullptr) {
33 b.add_input(data_type,
"Value").hide_value().field_on_all();
38 .
description(
"The mesh UV map to sample. Should not have overlapping faces");
41 .
description(
"The coordinates to sample within the UV map");
43 if (node !=
nullptr) {
45 b.add_output(data_type,
"Value").dependent_field({3});
49 .description(
"Whether the node could find a single face to sample at the UV coordinate");
73 bNode &node =
params.add_node(
"GeometryNodeSampleUVSurface");
75 params.update_and_connect_available_socket(node,
"Value");
84 std::optional<bke::MeshFieldContext> source_context_;
85 std::unique_ptr<FieldEvaluator> source_evaluator_;
88 std::optional<ReverseUVSampler> reverse_uv_sampler_;
92 : source_(std::move(geometry)), src_uv_map_field_(std::move(src_uv_map_field))
95 this->evaluate_source();
100 builder.single_input<
float2>(
"Sample UV");
101 builder.single_output<
bool>(
"Is Valid", mf::ParamFlag::SupportsUnusedOutput);
102 builder.single_output<
int>(
"Triangle Index", mf::ParamFlag::SupportsUnusedOutput);
103 builder.single_output<
float3>(
"Barycentric Weights", mf::ParamFlag::SupportsUnusedOutput);
115 2,
"Triangle Index");
117 3,
"Barycentric Weights");
119 mask.foreach_index([&](
const int i) {
124 if (!tri_index.is_empty()) {
125 tri_index[i] = result.tri_index;
127 if (!bary_weights.is_empty()) {
128 bary_weights[i] = result.bary_weights;
134 void evaluate_source()
138 source_evaluator_ = std::make_unique<FieldEvaluator>(*source_context_, mesh.corners_num);
139 source_evaluator_->add(src_uv_map_field_);
140 source_evaluator_->evaluate();
141 source_uv_map_ = source_evaluator_->get_evaluated<
float2>(0);
143 reverse_uv_sampler_.emplace(source_uv_map_, mesh.corner_tris());
150 const Mesh *mesh = geometry.get_mesh();
151 if (mesh ==
nullptr) {
152 params.set_default_remaining_outputs();
155 if (mesh->faces_num == 0 && mesh->verts_num != 0) {
156 params.error_message_add(NodeWarningType::Error,
TIP_(
"The source mesh must have faces"));
157 params.set_default_remaining_outputs();
169 std::make_shared<ReverseUVSampleFunction>(geometry, std::move(source_uv_map)),
170 {std::move(sample_uvs)});
177 std::make_shared<bke::mesh_surface_sample::BaryWeightSampleFn>(std::move(geometry),
#define NODE_CLASS_GEOMETRY
#define NOD_REGISTER_NODE(REGISTER_FUNC)
#define NOD_inline_enum_accessors(member)
void uiItemR(uiLayout *layout, PointerRNA *ptr, const char *propname, eUI_Item_Flag flag, const char *name, int icon)
static const CPPType & get()
GVArray try_convert(GVArray varray, const CPPType &to_type) const
static std::shared_ptr< FieldOperation > Create(std::shared_ptr< const mf::MultiFunction > function, Vector< GField > inputs={})
const Signature & signature() const
void set_signature(const Signature *signature)
Vector< SocketDeclaration * > inputs
Vector< SocketDeclaration * > outputs
ReverseUVSampleFunction(GeometrySet geometry, Field< float2 > src_uv_map_field)
void call(const IndexMask &mask, mf::Params params, mf::Context) const override
local_group_size(16, 16) .push_constant(Type b
const DataTypeConversions & get_implicit_type_conversions()
void node_register_type(bNodeType *ntype)
std::optional< eCustomDataType > socket_type_to_custom_data_type(eNodeSocketDatatype type)
const EnumPropertyItem * attribute_type_type_with_socket_fn(bContext *, PointerRNA *, PropertyRNA *, bool *r_free)
static void node_register()
static void node_init(bNodeTree *, bNode *node)
static void node_rna(StructRNA *srna)
static void node_geo_exec(GeoNodeExecParams params)
static void node_layout(uiLayout *layout, bContext *, PointerRNA *ptr)
static void node_declare(NodeDeclarationBuilder &b)
static void node_gather_link_searches(GatherLinkSearchOpParams ¶ms)
void search_link_ops_for_declarations(GatherLinkSearchOpParams ¶ms, Span< SocketDeclaration * > declarations)
PropertyRNA * RNA_def_node_enum(StructRNA *srna, const char *identifier, const char *ui_name, const char *ui_description, const EnumPropertyItem *static_items, const EnumRNAAccessors accessors, std::optional< int > default_value, const EnumPropertyItemFunc item_func, const bool allow_animation)
void geo_node_type_base(blender::bke::bNodeType *ntype, int type, const char *name, short nclass)
const EnumPropertyItem rna_enum_attribute_type_items[]
void ensure_owns_direct_data()
const Mesh * get_mesh() const
void(* initfunc)(bNodeTree *ntree, bNode *node)
NodeGeometryExecFunction geometry_node_execute
void(* draw_buttons)(uiLayout *, bContext *C, PointerRNA *ptr)
NodeGatherSocketLinkOperationsFunction gather_link_search_ops
NodeDeclareFunction declare