From 7c4e2df7803d17e772a747bc4cef84fbffb2a024 Mon Sep 17 00:00:00 2001 From: James E McClure Date: Tue, 11 Sep 2018 20:50:13 -0400 Subject: [PATCH] fix TriNormal --- analysis/decl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analysis/decl.cpp b/analysis/decl.cpp index b64e1a34..447f86ea 100644 --- a/analysis/decl.cpp +++ b/analysis/decl.cpp @@ -325,7 +325,7 @@ Point DECL::TriNormal(int edge) else if (edge == -3){ P.x = 0.0; P.y = 0.0; P.z = 1.0; // z cube face } - if (edge == -4){ + else if (edge == -4){ P.x = -1.0; P.y = 0.0; P.z = 0.0; // x cube face } else if (edge == -5){