mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-06-22 16:24:07 +00:00
fixed tes floorshape
This commit is contained in:
parent
b0d60f42f9
commit
479b5f5db0
@ -449,7 +449,7 @@ void geometry_information::generate_floorshapes_for(int id, cell *c, int siid, i
|
|||||||
|
|
||||||
for(int j=0; j<cor; j++) {
|
for(int j=0; j<cor; j++) {
|
||||||
hyperpoint last = actual[j?j-1:cor-1];
|
hyperpoint last = actual[j?j-1:cor-1];
|
||||||
hyperpoint current = actual[j];
|
hyperpoint current = ypush(1e-6 * randd()) * xpush(1e-6) * actual[j];
|
||||||
hyperpoint next = actual[j<cor-1?j+1:0];
|
hyperpoint next = actual[j<cor-1?j+1:0];
|
||||||
auto T = gpushxto0(current);
|
auto T = gpushxto0(current);
|
||||||
last = T * last;
|
last = T * last;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user