"Edges of Vertex" Node domain #104435
Labels
No Label
Meta
Good First Issue
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 & Devices
Module
Python API
Module
Rendering & Cycles
Module
Sculpt, Paint & Texture
Module
User Interface
Module
VFX & Video
Priority
High
Priority
Low
Priority
Normal
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Information 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 project
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender-manual#104435
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Page Information
File:
manual/modeling/geometry_nodes/mesh/topology/edges_of_vertex.rst
Blender Version:
3.5
Documentation Language:
en
Permanent Link
Short description of error
It's not clear in which domain the node should be used.
In documentation is written:
"...which makes it important that the node is evaluated on the vertex domain."
But the node has and "Edge Index" Output, so how is it possible to use and Edge Index on a vertex domain?
Also Inputs have the same problem: "Vertex Index" input must be specified on vertex domain but "Weights" input must be specified on edges domain.
So in which domain should the "Edges of Vertex" node be used?
As in many other nodes (pretty much almost every topology nodes) documentation, an example whould be very usefull.
Again in the same In documentation is written:
"One example use is finding the 'most vertical' edge connected to each vertex."
It's almost necessary to add a screenshot of the node tree to show how.
I'm attaching a screenshot of how I tried, unsuccessfully, to do it myself.
PS: On the "Edge Index" output description is written:
"An edge connected to the face, chosen by the Sort Index input."
It should be "An edge connected to the vertex, ..." cause it's the "Edges of Vertex".
And this slot doesn't output an edge but an index, so not geometry but an integer.
I have a usage example
The average direction of the two edges for each vertex.
It seems to work!
As soon as possible I will check out if I can use it to get the most vertical edge connected to a vertex.
Thank you
I took a look at the page and was similarly confused... Had to dig into Blender's source code before I finally understood how this node works. Turns out: the Weights input is special and always gets evaluated in the Edge domain, no matter what domain you're using the node in.
I reworked this page as well as the others, adding an example setup that actually demonstrates how to find the most vertical edge.