Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonioya <blendergit@gmail.com>2016-08-18 19:45:29 +0300
committerAntonioya <blendergit@gmail.com>2016-08-18 19:45:29 +0300
commit3621a2246905efc3258edf91afea99e9e75a4d5d (patch)
treea672a4b1a8fa49cc96fd8e19cf9f230819837e6e
parent25233646f2a2b38e090218ae2e9b3b4f98a12cf0 (diff)
Archimesh: fix normals of wall with peaks
-rw-r--r--archimesh/achm_room_maker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archimesh/achm_room_maker.py b/archimesh/achm_room_maker.py
index 33e90456..2b094739 100644
--- a/archimesh/achm_room_maker.py
+++ b/archimesh/achm_room_maker.py
@@ -717,7 +717,7 @@ def make_wall(prv, wall, baseboard, lastface, lastx, lasty, height, myvertex, my
(lastx + sizex, lasty + sizey, height)])
if check_visibility(hide, baseboard):
if fabs(factor) != 1:
- myfaces.extend([(lastface + 2, lastface + 3, lastface + 4, lastface + 5)])
+ myfaces.extend([(lastface + 2, lastface + 5, lastface + 4, lastface + 3)])
else:
if prv is False:
myfaces.extend([(lastface, lastface + 5, lastface + 4, lastface + 1),