1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-02 02:37:55 +00:00

created cellshapes for other 3D geometries

This commit is contained in:
Zeno Rogue
2021-07-12 12:23:34 +02:00
parent 8215ac74ee
commit 2215e07fca
9 changed files with 259 additions and 273 deletions

View File

@@ -1280,10 +1280,9 @@ EX void generate() {
auto v = euc::get_shifttable();
auto& hsh = cgi.heptshape;
hsh = unique_ptr<subcellshape>(new subcellshape);
auto& hsh = get_hsh();
auto& cs = hsh->faces;
auto& cs = hsh.faces;
cgi.loop = 4;
cgi.schmid = 3;
@@ -1348,7 +1347,7 @@ EX void generate() {
}
}
hsh->compute_hept();
hsh.compute_hept();
#endif
}