1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-20 16:37:40 +00:00

changed chamfered to bitruncated

This commit is contained in:
Zeno Rogue
2018-01-06 22:34:03 +01:00
parent 1427147fbc
commit 5bf6d54c7d
40 changed files with 357 additions and 357 deletions

View File

@@ -1201,7 +1201,7 @@ void checkStunKill(cell *dest);
void clearMessages();
void resetGeometry();
extern bool nonchamfered;
extern bool nonbitrunc;
namespace svg {
void circle(int x, int y, int size, int col);
@@ -2191,13 +2191,13 @@ struct hrmap {
struct hrmap_hyperbolic : hrmap {
heptagon *origin;
bool isnonchamfered;
bool isnonbitrunc;
hrmap_hyperbolic();
heptagon *getOrigin() { return origin; }
~hrmap_hyperbolic() {
DEBMEM ( verifycells(origin); )
// printf("Deleting hyperbolic map: %p\n", this);
dynamicval<bool> ph(nonchamfered, isnonchamfered);
dynamicval<bool> ph(nonbitrunc, isnonbitrunc);
clearfrom(origin);
}
void verify() { verifycells(origin); }
@@ -2431,7 +2431,7 @@ inline hyperpoint tC0(const transmatrix &T) {
transmatrix actualV(const heptspin& hs, const transmatrix& V);
transmatrix cview();
extern string chamfernames[2];
extern string bitruncnames[2];
extern bool need_mouseh;
extern int whateveri, whateveri2;