Enable creation of group of edges lying on wires using Mesh.Group()

This commit is contained in:
eap 2020-02-19 17:15:03 +03:00
parent 3e0873e7ff
commit 78e005bc86

View File

@ -2639,7 +2639,7 @@ class Mesh(metaclass = MeshMeta):
tgeo = str(shape.GetShapeType())
if tgeo == "VERTEX":
typ = NODE
elif tgeo == "EDGE":
elif tgeo == "EDGE" or tgeo == "WIRE":
typ = EDGE
elif tgeo == "FACE" or tgeo == "SHELL":
typ = FACE