Nodes: Add rotation socket type, support in many geometry nodes #108903

Merged
Hans Goudey merged 11 commits from HooglyBoogly/blender:nodes-rotation-socket into main 2023-06-14 20:30:17 +02:00
Member

Add a quaternion rotation socket type, and using the recently added
rotation attribute type, support the type in most of the multi-type
geometry nodes, and modifier attribute inputs and outputs.

The socket is still exposed with an XYZ Euler default value.
In the future we can add modes to this rotation value similar
to object rotations.

Rotation values have no implicit conversions to other types.
Nodes to convert to and from rotation values will be added
in a follow-up commit.

For now, the new socket type is hidden behind and experimental
option, because we haven't chosen the final color for it yet.

image

Add a quaternion rotation socket type, and using the recently added rotation attribute type, support the type in most of the multi-type geometry nodes, and modifier attribute inputs and outputs. The socket is still exposed with an XYZ Euler default value. In the future we can add modes to this rotation value similar to object rotations. Rotation values have no implicit conversions to other types. Nodes to convert to and from rotation values will be added in a follow-up commit. For now, the new socket type is hidden behind and experimental option, because we haven't chosen the final color for it yet. ![image](/attachments/71a8ed33-95ea-4679-a39d-cbdeec5bda17)
Hans Goudey added 4 commits 2023-06-12 17:34:23 +02:00
Hans Goudey requested review from Lukas Tönne 2023-06-12 17:34:34 +02:00
Hans Goudey requested review from Jacques Lucke 2023-06-12 17:34:34 +02:00
Hans Goudey added this to the Nodes & Physics project 2023-06-12 17:34:41 +02:00
Hans Goudey added this to the 4.0 milestone 2023-06-12 17:34:44 +02:00
Hans Goudey added 2 commits 2023-06-12 21:11:08 +02:00
Lukas Tönne requested changes 2023-06-13 12:08:23 +02:00
Lukas Tönne left a comment
Member

Looks good, this will help a lot. Some field dependencies probably need corrected indices.

Looks good, this will help a lot. Some field dependencies probably need corrected indices.
@ -510,6 +512,12 @@ static const EnumPropertyItem rna_node_combsep_color_items[] = {
{0, NULL, 0, NULL, NULL},
};
static const EnumPropertyItem rna_node_combine_separate_rotation_items[] = {
Member

I would like to have a "raw" xyzw component mode here. All other vector-like types support that. The euler and axis-angle modes may be more intuitive, but there are situations where i would want direct access to these values. Example: hair simulation models based on elastic rods require the imaginary part of a quaternion product. The combine node can do normalization implicitly.

I would like to have a "raw" xyzw component mode here. All other vector-like types support that. The euler and axis-angle modes may be more intuitive, but there are situations where i would want direct access to these values. Example: hair simulation models based on elastic rods require the imaginary part of a quaternion product. The combine node can do normalization implicitly.
Author
Member

Great point! The RNA for these new nodes wasn't meant to be in this patch actually, but I'll remember that for the next one that introduces these nodes.

Great point! The RNA for these new nodes wasn't meant to be in this patch actually, but I'll remember that for the next one that introduces these nodes.
@ -51,6 +52,7 @@ static void node_declare(NodeDeclarationBuilder &b)
b.add_output<decl::Color>("Attribute", "Attribute_002").dependent_field({6, 7, 8});
b.add_output<decl::Bool>("Attribute", "Attribute_003").dependent_field({6, 7, 8});
b.add_output<decl::Int>("Attribute", "Attribute_004").dependent_field({6, 7, 8});
b.add_output<decl::Rotation>("Attribute", "Attribute_005").dependent_field({6, 7, 8});
Member

Inputs 6,7,8 shifted to 7,8,9.

Inputs 6,7,8 shifted to 7,8,9.
HooglyBoogly marked this conversation as resolved
@ -38,6 +39,7 @@ static void node_declare(NodeDeclarationBuilder &b)
b.add_output<decl::Vector>("Value", "Value_Vector").dependent_field({6});
b.add_output<decl::Color>("Value", "Value_Color").dependent_field({6});
b.add_output<decl::Bool>("Value", "Value_Bool").dependent_field({6});
b.add_output<decl::Rotation>("Value", "Value_Rotation").dependent_field({6});
Member

"Sample Position" input shifts from 6 to 7.

"Sample Position" input shifts from 6 to 7.
HooglyBoogly marked this conversation as resolved
@ -43,6 +44,7 @@ static void node_declare(NodeDeclarationBuilder &b)
b.add_output<decl::Vector>("Value", "Value_Vector").dependent_field({7});
b.add_output<decl::Color>("Value", "Value_Color").dependent_field({7});
b.add_output<decl::Bool>("Value", "Value_Bool").dependent_field({7});
b.add_output<decl::Rotation>("Value", "Value_Rotation").dependent_field({7});
Member

Input 7 shifts to 8.

Input 7 shifts to 8.
HooglyBoogly marked this conversation as resolved
Hans Goudey added 3 commits 2023-06-13 14:29:12 +02:00
Hans Goudey requested review from Lukas Tönne 2023-06-13 14:29:14 +02:00
Lukas Tönne approved these changes 2023-06-13 14:32:01 +02:00
Member

Adding the Sample Index node results in a crash for me currently.

Adding the Sample Index node results in a crash for me currently.
Member

The code looks good, but unsure if we can merge this without picking the color first. If adding the experimental option takes less than 30 min, I think it's worth it.

The code looks good, but unsure if we can merge this without picking the color first. If adding the experimental option takes less than 30 min, I think it's worth it.
Member

The code looks good, but unsure if we can merge this without picking the color first. If adding the experimental option takes less than 30 min, I think it's worth it.

Fairly simple, this is my commit adding an experimental flag for the panels 066d40b7b5

> The code looks good, but unsure if we can merge this without picking the color first. If adding the experimental option takes less than 30 min, I think it's worth it. Fairly simple, this is my commit adding an experimental flag for the panels 066d40b7b580976e79ee7de97211cd52bde8e744
Hans Goudey added 2 commits 2023-06-14 20:29:07 +02:00
Hans Goudey merged commit 63dae2a105 into main 2023-06-14 20:30:17 +02:00
Hans Goudey deleted branch nodes-rotation-socket 2023-06-14 20:30:18 +02:00
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No Assignees
3 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#108903
No description provided.