挤出网格¶
The Extrude Mesh Node generates new edges or faces on the selected geometry elements and moves them by a certain offset.
这些操作类似于 挤出工具 在网格编辑模式下,尽管有一些差异。最重要的是,该节点从未将挤压的背面保持在适当位置,它们总是被移除。属性传播规则也可以是不同的。
输入¶
- 网格
标准的几何图形输入。
- 选择
A boolean field indicating which elements should be extruded.
- 偏移量
The translation vector for each extruded element. By default, this is the element's normal.
Tip
If all the elements are extruded in the same direction, you may be able to improve performance by connecting a 矢量节点 to this input, thereby skipping the normal calculation.
- 偏移比例
Scaling factor for the above translation vector.
- 仅选择 编辑模式
Whether to extrude each face individually rather than extruding connected groups of faces together.
属性¶
- 模式
- 顶点:
Attaches a new freestanding edge to each selected vertex.
- 边:
Attaches a new quad face to each selected edges. Vertices shared by the original selected edges are also shared in the duplicated edges.
Note
Depending on the situation, the normals of the new faces may be arbitrary. If the selected edges each have only one connected face, then the node can pick a consistent orientation for the new faces, but if there is more than one connected face, or no connected faces, the normals may have to be adjusted afterwards.
- 面:
根据 单个 布尔输入,单独挤出选定面或每个选定面的连续区域。
When the Individual input is false, the node will find regions of connected faces and generate new "side" faces on the boundaries of those regions. Any vertices, edges or faces on the inside of the regions simply are moved, not duplicated. If the whole mesh is selected and it is already a Manifold shape, then the result will just be that the whole mesh gets resized.
输出¶
- 网格
标准的几何体输出。
- 顶视图
A boolean field indicating the "top" elements in the extrusion. In Vertex mode, these are the new vertices; in Edge mode, the new edges; and in Face mode, the moved faces.
- 侧面
A boolean field indicating the "side" elements in the extrusion. In Vertex mode, these are the new edges; in Edge mode, the new faces; and in Face mode, too, the newly generated faces (as opposed to the moved ones).
示例¶
Here, the selection outputs are used to set materials on certain faces of the mesh. A 随机值 is used to limit the extrusion to a random set of faces.
传递步数¶
属性将传输到具有特定规则的新元素。属性将永远不会更改生成的网格上的域。id
属性没有任何特殊处理。
通常,布尔属性用 "或" 传播,这意味着为其他类型混合的任何连接的 "true"值也将导致新值为 "true"。
以下章节描述:
顶点模式¶
新的 顶点 已从其原始顶点复制值。
新的 边缘 具有任何连接的原始边缘的平均值。对于布尔属性,如果选择了任何连接的边缘,则选择边缘。
边模式¶
新的 顶点 已从其原始顶点复制值。
垂直连接 边缘 从任何连接的挤压边缘获取平均值。对于布尔值,如果选择了任何连接的挤压边缘,则选择边缘。( 传播规则如上图所示 )
水平复制 边缘 已从其原始边缘复制值。
新的 面 获取连接到选定边缘的所有面平均值。对于布尔值,如果选择了任何连接的原始面,则选择面。
新的 面角 获取连接到选定边缘的所有面中相应角的平均值。对于布尔值,如果选择了其中一个角,则选择角。
面模式¶
新的 顶点 已从其原始顶点复制值。
垂直连接 边缘 从任何连接的挤出边缘获取平均值,不包括挤出区域的 "顶部" 边缘。对于布尔值,如果选择了任何这些连接的边缘,则会选择边缘。( 传播规则如上图所示 )
水平复制 边缘 已从其原始边缘复制值。
新的 面 已从相应的挤压面复制值。
新的 面转角 已从相应的挤压面角复制值。
面模式¶
新的 顶点 已从其原始顶点复制值。
垂直连接 边 获取每个挤出面上两个相邻边的平均值。对于布尔值,当选择挤出面上的至少一个邻项时,选择边。
水平复制 边缘 已从其原始边缘复制值。
新侧 面 已从其相应的选定面复制值。
新的 面转角 已从所选面部的相应角落复制值。