Merge Vertices
modeling.merge_verticesMerges nearby vertices on a mesh using a distance threshold, optionally targeting specific vertices. Helps clean up geometry and reduce vertex count.
Instructions
Merge vertices on a mesh within a distance threshold.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mesh | Yes | Name of the mesh | |
| vertices | No | Optional specific vertex components to merge (None = all vertices) | |
| threshold | No | Distance threshold for merging (default 0.001) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mesh | Yes | ||
| errors | Yes | ||
| vertices_merged | Yes | ||
| vertex_count_after | Yes | ||
| vertex_count_before | Yes |