1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 03:09:59 +00:00

comments on the rugpoint structure

This commit is contained in:
Zeno Rogue 2018-01-29 16:30:55 +01:00
parent cd988324a0
commit e590000627

View File

@ -75,8 +75,8 @@ struct rugpoint {
bool valid;
bool inqueue;
double dist;
hyperpoint h;
hyperpoint flat;
hyperpoint h; // point in the represented space
hyperpoint flat; // point in the native space, in azeq
vector<edge> edges;
// Find-Union algorithm
rugpoint *glue;