diff --git a/InitGui.py b/InitGui.py index d882abc9..065c40cd 100644 --- a/InitGui.py +++ b/InitGui.py @@ -26,7 +26,7 @@ __title__ = 'A2plus assembly Workbench - InitGui file' __author__ = 'kbwbe' -A2P_VERSION = 'V0.4.24' +A2P_VERSION = 'V0.4.25' diff --git a/a2p_MuxAssembly.py b/a2p_MuxAssembly.py index 53ea8748..25c82d40 100644 --- a/a2p_MuxAssembly.py +++ b/a2p_MuxAssembly.py @@ -147,10 +147,13 @@ def muxAssemblyWithTopoNames(doc, desiredShapeLabel=None): faces.extend(tempShape.Faces) - if len(faces) == 1: - shell = Part.makeShell([faces]) - else: - shell = Part.makeShell(faces) + #if len(faces) == 1: + # shell = Part.makeShell([faces]) + #else: + # shell = Part.makeShell(faces) + + shell = Part.makeShell(faces) + try: if a2plib.getUseSolidUnion(): if len(shape_list) > 1: diff --git a/a2p_topomapper.py b/a2p_topomapper.py index 115ae6f6..e6307311 100644 --- a/a2p_topomapper.py +++ b/a2p_topomapper.py @@ -535,10 +535,13 @@ def createTopoNames(self, desiredShapeLabel = None): faceColors.extend(diffuseCol) #let python libs extend faceColors, much faster faces.extend(tempShape.Faces) #let python libs extend faces, much faster - if len(faces) == 1: - shell = Part.makeShell([faces]) - else: - shell = Part.makeShell(faces) + + #if len(faces) == 1: + # shell = Part.makeShell([faces]) + #else: + # shell = Part.makeShell(faces) + shell = Part.makeShell(faces) + try: if a2plib.getUseSolidUnion(): if len(shape_list) > 1: