From 8b3ea9031ae281887c2547f4b5e97432819fc56c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 21 Jul 2021 10:49:48 +0200 Subject: [PATCH] nil:: fixed a possible crash due to missing compute_hept() --- nonisotropic.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/nonisotropic.cpp b/nonisotropic.cpp index 8645fdfa..1d27710e 100644 --- a/nonisotropic.cpp +++ b/nonisotropic.cpp @@ -1041,6 +1041,7 @@ EX void create_faces() { for(auto& h: fvs) h[0] *= nilwidth, h[1] *= nilwidth, h[2] *= nilwidth * nilwidth; add_wall(i, fvs); } + get_hsh().compute_hept(); } EX }