Blender V4.3
node_geo_input_instance_rotation.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
6
7#include "BLI_math_matrix.hh"
8
9#include "BKE_instances.hh"
10
12
14{
15 b.add_output<decl::Rotation>("Rotation").field_source();
16}
17
19 public:
21 : bke::InstancesFieldInput(CPPType::get<math::Quaternion>(), "Rotation")
22 {
23 }
24
26 const IndexMask & /*mask*/) const final
27 {
28 const Span<float4x4> transforms = instances.transforms();
29 return VArray<math::Quaternion>::ForFunc(instances.instances_num(), [transforms](const int i) {
30 return math::to_quaternion(math::normalize(transforms[i]));
31 });
32 }
33
34 uint64_t hash() const override
35 {
36 return 22374372;
37 }
38
39 bool is_equal_to(const fn::FieldNode &other) const override
40 {
41 return dynamic_cast<const InstanceRotationFieldInput *>(&other) != nullptr;
42 }
43};
44
46{
47 Field<math::Quaternion> rotation{std::make_shared<InstanceRotationFieldInput>()};
48 params.set_output("Rotation", std::move(rotation));
49}
50
51static void node_register()
52{
53 static blender::bke::bNodeType ntype;
55 &ntype, GEO_NODE_INPUT_INSTANCE_ROTATION, "Instance Rotation", NODE_CLASS_INPUT);
57 ntype.declare = node_declare;
59}
61
62} // namespace blender::nodes::node_geo_input_instance_rotation_cc
#define NODE_CLASS_INPUT
Definition BKE_node.hh:404
#define NOD_REGISTER_NODE(REGISTER_FUNC)
static VArray ForFunc(const int64_t size, GetFunc get_func)
GVArray get_varray_for_context(const bke::Instances &instances, const IndexMask &) const final
local_group_size(16, 16) .push_constant(Type b
uiWidgetBaseParameters params[MAX_WIDGET_BASE_BATCH]
void node_register_type(bNodeType *ntype)
Definition node.cc:1708
void geo_node_type_base(blender::bke::bNodeType *ntype, int type, const char *name, short nclass)
unsigned __int64 uint64_t
Definition stdint.h:90
Defines a node type.
Definition BKE_node.hh:218
NodeGeometryExecFunction geometry_node_execute
Definition BKE_node.hh:339
NodeDeclareFunction declare
Definition BKE_node.hh:347