1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-04-28 19:41:23 +00:00

inforder basics

This commit is contained in:
Zeno Rogue
2019-10-10 13:08:06 +02:00
parent e799f76e5d
commit b5f6e6f3f5
10 changed files with 66 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ void geometry_information::hpcpush(hyperpoint h) {
ld threshold = (GDIM == 3 || last->flags & POLY_TRIANGLES) ? 100 : (sphere ? (ISMOBWEB || NONSTDVAR ? .04 : .001) : 0.1) * pow(.25, vid.linequality);
if(/*vid.usingGL && */!first) {
ld i = intval(hpc.back(), h);
if(i > threshold && i < 10) {
if(i > threshold && (i < 10 || S3 >= OINF)) {
hyperpoint md = mid(hpc.back(), h);
hpcpush(md);
hpcpush(h);