From 459edb13db147654367afb5912064f95ad865857 Mon Sep 17 00:00:00 2001 From: KeithSloan Date: Fri, 30 Aug 2019 14:29:45 +0100 Subject: [PATCH] Fix OpenSCAD Frustrum --- src/Mod/OpenSCAD/OpenSCADFeatures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/OpenSCAD/OpenSCADFeatures.py b/src/Mod/OpenSCAD/OpenSCADFeatures.py index f817cff4ec..16e91c8d44 100644 --- a/src/Mod/OpenSCAD/OpenSCADFeatures.py +++ b/src/Mod/OpenSCAD/OpenSCADFeatures.py @@ -340,7 +340,7 @@ class Frustum: pts.append(pts[0]) shape = Part.makePolygon(pts) face = Part.Face(shape) - if ir==1: #top face + if ir==0: #top face face.reverse() wires.append(shape) faces.append(face)