Corners of Edge Node¶
Selects a neighboring face corner of an edge and outputs its index.
This node is a bit special because it operates in two different domains. First, it evaluates a Weight for each corner in the geometry. Then, for each item in the context domain, it will:
Pick an edge from the geometry based on the Edge Index.
Find some (not all) face corners connected to this edge -- see below.
Sort these corners by their associated weight.
Pick a corner from the above sorted list based on the Sort Index, where 0 means the corner with the lowest weight, 1 means the corner with the second-lowest weight and so on.
Output the geometry-wide index of this corner.
Cảnh báo
As illustrated below, the node only looks at one corner per connected face. Even though the edge has four neighboring corners, Corner Index can only return the indexes of two of them, and Total will similarly return 2.
You can use the Nút Dịch Chuyển Góc trong Mặt (Offset Corner in Face Node) to retrieve the indexes of the other corners.
Red: selected edge.
Blue: the corners whose index can be retrieved using this node.
Purple: the corners that can be retrieved by offsetting the blue corner indices using the Nút Dịch Chuyển Góc trong Mặt (Offset Corner in Face Node).
Đầu Vào (Inputs)¶
- Chỉ Số Cạnh (Edge Index)
The index of the edge for which to find connected corners.
Ghi chú
If this input is not connected, it uses the index of the context item, which means it's important that the node is evaluated in the Edge domain.
- Trọng Lượng (Weights)
The weights of the corners in the geometry. Unlike the other inputs which follow the context domain, this one is always evaluated in the Face Corner domain.
The corners are sorted by their associated weight in ascending order. Corners with the same weight are sorted by their index.
- Chỉ Số Sắp Xếp (Sort Index)
The 0-based index of the corner to select from the edge's sorted corners. If this value is outside the range of valid indices, it wraps around.
Tính Chất (Properties)¶
Nút này không có tính chất nào cả.
Đầu Ra (Outputs)¶
- Chỉ Số Góc (Corner Index)
The geometry-wide index of the selected corner. You can pass this to the Evaluate at Index Node or the Nút Chỉ Số Mẫu Vật (Sample Index Node) (with the domain set to Face Corner) to retrieve details about the corner.
If the edge has no connected corners, Corner Index will be zero.
- Tổng Số (Total)
The number of faces (not face corners!) connected to the edge.
Xem thêm
The page for the Nút Các Cạnh của Điểm Đỉnh (Edges of Vertex Node) has an example of how to work with the different domains.