How do I set up specific shared topology on edges?
Mike.Thompson
Member, Employee Posts: 339
✭✭✭✭
in 3D Design
How can I set up shared topology on specific edges in spaceclaim or discovery scripting?
Tagged:
0
Answers
-
@Rajesh Meena can you asssit?
0 -
@Mike.Thompson This is quite old question but I am posting solution here:
Lets assume you have named selection of all the edges where you want to create sharedtopo. here is small snippet to do that. Below is the result as well.
import System
edge_selection = Selection.CreateByGroups("EDGE_SELECTION")
point_vertices = []
for edge in edge_selection.Items:
point_vertices.append(edge.EvalStart().Point)point_list = System.ArrayPoint
ShareTopology.FixSpecific(edge_selection, point_list)
0