2018-08-17 14:47:06 +00:00
|
|
|
// Hyperbolic Rogue
|
|
|
|
// advanced geometry
|
|
|
|
|
|
|
|
// Copyright (C) 2011-2018 Zeno Rogue, see 'hyper.cpp' for details
|
|
|
|
|
|
|
|
namespace hr {
|
|
|
|
|
|
|
|
transmatrix &ggmatrix(cell *c);
|
|
|
|
|
|
|
|
void fixelliptic(transmatrix& at) {
|
2019-05-08 16:33:08 +00:00
|
|
|
if(elliptic && at[GDIM][GDIM] < 0) {
|
2019-02-25 17:13:09 +00:00
|
|
|
for(int i=0; i<MDIM; i++) for(int j=0; j<MDIM; j++)
|
2018-08-17 14:47:06 +00:00
|
|
|
at[i][j] = -at[i][j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void fixelliptic(hyperpoint& h) {
|
2019-05-08 16:33:08 +00:00
|
|
|
if(elliptic && h[GDIM] < 0)
|
2019-02-25 17:13:09 +00:00
|
|
|
for(int i=0; i<MDIM; i++) h[i] = -h[i];
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
transmatrix master_relative(cell *c, bool get_inverse) {
|
2019-02-17 17:28:20 +00:00
|
|
|
if(0) ;
|
|
|
|
#if CAP_IRR
|
|
|
|
else if(IRREGULAR) {
|
2018-08-17 14:47:06 +00:00
|
|
|
int id = irr::cellindex[c];
|
|
|
|
ld alpha = 2 * M_PI / S7 * irr::periodmap[c->master].base.spin;
|
|
|
|
return get_inverse ? irr::cells[id].rpusher * spin(-alpha-master_to_c7_angle()): spin(alpha + master_to_c7_angle()) * irr::cells[id].pusher;
|
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
|
|
|
#if CAP_GP
|
2018-08-28 15:17:34 +00:00
|
|
|
else if(GOLDBERG) {
|
2018-08-17 14:47:06 +00:00
|
|
|
if(c == c->master->c7) {
|
|
|
|
return spin((get_inverse?-1:1) * master_to_c7_angle());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
auto li = gp::get_local_info(c);
|
2019-05-26 16:04:02 +00:00
|
|
|
transmatrix T = spin(master_to_c7_angle()) * cgi.gpdata->Tf[li.last_dir][li.relative.first&31][li.relative.second&31][gp::fixg6(li.total_dir)];
|
2018-08-17 14:47:06 +00:00
|
|
|
if(get_inverse) T = inverse(T);
|
|
|
|
return T;
|
|
|
|
}
|
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
2018-08-28 15:17:34 +00:00
|
|
|
else if(BITRUNCATED && !euclid) {
|
2018-08-17 22:46:45 +00:00
|
|
|
for(int d=0; d<S7; d++) if(c->master->c7->move(d) == c)
|
2019-05-26 16:04:02 +00:00
|
|
|
return (get_inverse?cgi.invhexmove:cgi.hexmove)[d];
|
2018-08-17 14:47:06 +00:00
|
|
|
return Id;
|
|
|
|
}
|
2019-05-08 16:33:08 +00:00
|
|
|
else if(WDIM == 3 || euclid)
|
2019-02-27 16:59:47 +00:00
|
|
|
return Id;
|
2018-08-17 14:47:06 +00:00
|
|
|
else
|
|
|
|
return pispin * Id;
|
|
|
|
}
|
|
|
|
|
|
|
|
transmatrix calc_relative_matrix(cell *c2, cell *c1, int direction_hint) {
|
2018-08-19 14:28:36 +00:00
|
|
|
return calc_relative_matrix(c2, c1, ddspin(c1, direction_hint) * xpush0(1e-2));
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
|
2019-03-08 21:38:44 +00:00
|
|
|
transmatrix calc_relative_matrix(cell *c2, cell *c1, const hyperpoint& point_hint) {
|
|
|
|
return currentmap->relative_matrix(c2, c1, point_hint);
|
|
|
|
}
|
|
|
|
|
2018-08-17 14:47:06 +00:00
|
|
|
// target, source, direction from source to target
|
|
|
|
|
2019-02-17 17:28:20 +00:00
|
|
|
#if CAP_GP
|
2018-08-17 14:47:06 +00:00
|
|
|
namespace gp { extern gp::local_info draw_li; }
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
2018-08-17 14:47:06 +00:00
|
|
|
|
2019-03-08 21:38:44 +00:00
|
|
|
transmatrix hrmap_standard::relative_matrix(cell *c2, cell *c1, const hyperpoint& point_hint) {
|
2018-08-17 14:47:06 +00:00
|
|
|
|
|
|
|
heptagon *h1 = c1->master;
|
|
|
|
transmatrix gm = master_relative(c1, true);
|
|
|
|
heptagon *h2 = c2->master;
|
|
|
|
transmatrix where = master_relative(c2);
|
|
|
|
|
|
|
|
// always add to last!
|
|
|
|
//bool hsol = false;
|
|
|
|
//transmatrix sol;
|
|
|
|
|
2018-12-04 20:17:16 +00:00
|
|
|
set<heptagon*> visited;
|
|
|
|
map<ld, vector<pair<heptagon*, transmatrix>>> hbdist;
|
|
|
|
|
2018-12-01 22:53:03 +00:00
|
|
|
int steps = 0;
|
2018-08-17 14:47:06 +00:00
|
|
|
while(h1 != h2) {
|
2018-12-04 20:17:16 +00:00
|
|
|
steps++; if(steps > 10000) {
|
|
|
|
println(hlog, "not found"); return Id;
|
|
|
|
}
|
2018-12-13 16:02:38 +00:00
|
|
|
if(bounded) {
|
2018-08-17 14:47:06 +00:00
|
|
|
transmatrix T;
|
|
|
|
ld bestdist = 1e9;
|
2018-08-17 22:46:45 +00:00
|
|
|
for(int d=0; d<S7; d++) if(h2->move(d)) {
|
|
|
|
int sp = h2->c.spin(d);
|
2019-05-26 16:04:02 +00:00
|
|
|
transmatrix S = cgi.heptmove[sp] * spin(2*M_PI*d/S7);
|
|
|
|
if(h2->c.mirror(d)) S = cgi.heptmove[sp] * Mirror * spin(2*M_PI*d/S7);
|
2018-08-17 22:46:45 +00:00
|
|
|
if(h2->move(d) == h1) {
|
2018-08-17 14:47:06 +00:00
|
|
|
transmatrix T1 = gm * S * where;
|
|
|
|
auto curdist = hdist(tC0(T1), point_hint);
|
|
|
|
if(curdist < bestdist) T = T1, bestdist = curdist;
|
|
|
|
}
|
2018-09-23 14:30:56 +00:00
|
|
|
if(geometry != gMinimal) for(int e=0; e<S7; e++) if(h2->move(d)->move(e) == h1) {
|
2018-08-17 22:46:45 +00:00
|
|
|
int sp2 = h2->move(d)->c.spin(e);
|
2019-05-26 16:04:02 +00:00
|
|
|
transmatrix T1 = gm * cgi.heptmove[sp2] * spin(2*M_PI*e/S7) * S * where;
|
2018-08-17 14:47:06 +00:00
|
|
|
auto curdist = hdist(tC0(T1), point_hint);
|
|
|
|
if(curdist < bestdist) T = T1, bestdist = curdist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(bestdist < 1e8) return T;
|
|
|
|
}
|
2018-08-17 22:46:45 +00:00
|
|
|
for(int d=0; d<S7; d++) if(h2->move(d) == h1) {
|
|
|
|
int sp = h2->c.spin(d);
|
2019-05-26 16:04:02 +00:00
|
|
|
return gm * cgi.heptmove[sp] * spin(2*M_PI*d/S7) * where;
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
2018-12-04 20:17:16 +00:00
|
|
|
if(among(geometry, gFieldQuotient, gBring, gMacbeath)) {
|
|
|
|
int bestdist = 1000000, bestd = 0;
|
2018-08-17 14:47:06 +00:00
|
|
|
for(int d=0; d<S7; d++) {
|
2018-12-13 16:02:38 +00:00
|
|
|
int dist = celldistance(h2->cmove(d)->c7, c1);
|
2018-08-17 14:47:06 +00:00
|
|
|
if(dist < bestdist) bestdist = dist, bestd = d;
|
|
|
|
}
|
2018-08-17 22:46:45 +00:00
|
|
|
int sp = h2->c.spin(bestd);
|
2019-05-26 16:04:02 +00:00
|
|
|
where = cgi.heptmove[sp] * spin(2*M_PI*bestd/S7) * where;
|
2018-08-17 22:46:45 +00:00
|
|
|
h2 = h2->move(bestd);
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#if CAP_CRYSTAL
|
2018-12-04 20:17:16 +00:00
|
|
|
else if(geometry == gCrystal) {
|
|
|
|
for(int d3=0; d3<S7; d3++) {
|
|
|
|
auto h3 = h2->cmove(d3);
|
|
|
|
if(visited.count(h3)) continue;
|
|
|
|
visited.insert(h3);
|
|
|
|
int sp3 = h2->c.spin(d3);
|
2019-05-26 16:04:02 +00:00
|
|
|
transmatrix where3 = cgi.heptmove[sp3] * spin(2*M_PI*d3/S7) * where;
|
2018-12-04 20:17:16 +00:00
|
|
|
ld dist = crystal::space_distance(h3->c7, c1);
|
|
|
|
hbdist[dist].emplace_back(h3, where3);
|
|
|
|
}
|
|
|
|
auto &bestv = hbdist.begin()->second;
|
|
|
|
tie(h2, where) = bestv.back();
|
|
|
|
bestv.pop_back();
|
|
|
|
if(bestv.empty()) hbdist.erase(hbdist.begin());
|
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
2018-08-17 14:47:06 +00:00
|
|
|
else if(h1->distance < h2->distance) {
|
2018-08-17 22:46:45 +00:00
|
|
|
int sp = h2->c.spin(0);
|
|
|
|
h2 = h2->move(0);
|
2019-05-26 16:04:02 +00:00
|
|
|
where = cgi.heptmove[sp] * where;
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-08-17 22:46:45 +00:00
|
|
|
int sp = h1->c.spin(0);
|
|
|
|
h1 = h1->move(0);
|
2019-05-26 16:04:02 +00:00
|
|
|
gm = gm * cgi.invheptmove[sp];
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/*if(hsol) {
|
|
|
|
transmatrix sol2 = gm * where;
|
|
|
|
for(int i=0; i<3; i++) for(int j=0; j<3; j++)
|
|
|
|
if(fabs(sol2[i][j]-sol[i][j] > 1e-3)) {
|
|
|
|
printf("ERROR\n");
|
|
|
|
display(sol);
|
|
|
|
display(sol2);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} */
|
|
|
|
return gm * where;
|
|
|
|
}
|
|
|
|
|
|
|
|
transmatrix &ggmatrix(cell *c) {
|
|
|
|
transmatrix& t = gmatrix[c];
|
2019-05-08 16:33:08 +00:00
|
|
|
if(t[GDIM][GDIM] == 0) {
|
2018-11-27 01:32:11 +00:00
|
|
|
if(euwrap && centerover.at)
|
2018-08-17 22:46:45 +00:00
|
|
|
t = calc_relative_matrix(c, centerover.at, C0);
|
2019-05-08 16:33:08 +00:00
|
|
|
else if(euclid && WDIM == 2) {
|
2018-08-17 22:46:45 +00:00
|
|
|
if(!centerover.at) centerover = cwt;
|
2018-08-17 14:47:06 +00:00
|
|
|
t = View * eumove(cell_to_vec(c) - cellwalker_to_vec(centerover));
|
|
|
|
}
|
|
|
|
else
|
2019-05-15 12:19:39 +00:00
|
|
|
t = actualV(viewctr, actual_view_transform * View) * calc_relative_matrix(c, viewctr.at->c7, C0);
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
transmatrix calc_relative_matrix_help(cell *c, heptagon *h1) {
|
|
|
|
transmatrix gm = Id;
|
|
|
|
heptagon *h2 = c->master;
|
|
|
|
transmatrix where = Id;
|
2019-02-17 17:28:20 +00:00
|
|
|
if(0);
|
|
|
|
#if CAP_GP
|
|
|
|
else if(GOLDBERG && c != c->master->c7) {
|
2018-08-17 14:47:06 +00:00
|
|
|
auto li = gp::get_local_info(c);
|
2019-05-26 16:04:02 +00:00
|
|
|
where = cgi.gpdata->Tf[li.last_dir][li.relative.first&31][li.relative.second&31][fix6(li.total_dir)];
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
2018-08-28 15:17:34 +00:00
|
|
|
else if(BITRUNCATED) for(int d=0; d<S7; d++) if(h2->c7->move(d) == c)
|
2019-05-26 16:04:02 +00:00
|
|
|
where = cgi.hexmove[d];
|
2018-08-17 14:47:06 +00:00
|
|
|
// always add to last!
|
|
|
|
while(h1 != h2) {
|
2018-08-17 22:46:45 +00:00
|
|
|
for(int d=0; d<S7; d++) if(h1->move(d) == h2) printf("(adj) ");
|
2018-08-17 14:47:06 +00:00
|
|
|
if(h1->distance < h2->distance) {
|
2018-08-17 22:46:45 +00:00
|
|
|
int sp = h2->c.spin(0);
|
2018-08-17 14:47:06 +00:00
|
|
|
printf("A%d ", sp);
|
2018-08-17 22:46:45 +00:00
|
|
|
h2 = h2->move(0);
|
2019-05-26 16:04:02 +00:00
|
|
|
where = cgi.heptmove[sp] * where;
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-08-17 22:46:45 +00:00
|
|
|
int sp = h1->c.spin(0);
|
2018-08-17 14:47:06 +00:00
|
|
|
printf("B%d ", sp);
|
2018-08-17 22:46:45 +00:00
|
|
|
h1 = h1->move(0);
|
2019-05-26 16:04:02 +00:00
|
|
|
gm = gm * cgi.invheptmove[sp];
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
}
|
2018-11-24 16:01:49 +00:00
|
|
|
println(hlog, "OK");
|
|
|
|
println(hlog, gm * where);
|
2018-08-17 14:47:06 +00:00
|
|
|
return gm * where;
|
|
|
|
}
|
|
|
|
|
2019-04-30 01:35:23 +00:00
|
|
|
struct horo_distance {
|
|
|
|
ld a, b;
|
|
|
|
horo_distance(hyperpoint h1) {
|
2019-05-06 23:08:49 +00:00
|
|
|
#if CAP_BT
|
2019-04-30 01:35:23 +00:00
|
|
|
if(binarytiling) {
|
|
|
|
b = intval(h1, C0);
|
|
|
|
a = abs(binary::horo_level(h1));
|
|
|
|
}
|
|
|
|
else
|
2019-05-06 23:08:49 +00:00
|
|
|
#endif
|
2019-04-30 01:35:23 +00:00
|
|
|
a = 0, b = intval(h1, C0);
|
|
|
|
}
|
|
|
|
horo_distance(hyperpoint h1, const transmatrix& T) {
|
2019-05-06 23:08:49 +00:00
|
|
|
#if CAP_BT
|
2019-04-30 01:35:23 +00:00
|
|
|
if(binarytiling) {
|
|
|
|
hyperpoint ih1 = inverse(T) * h1;
|
|
|
|
b = intval(ih1, C0);
|
|
|
|
a = abs(binary::horo_level(ih1));
|
|
|
|
}
|
|
|
|
else
|
2019-05-06 23:08:49 +00:00
|
|
|
#endif
|
2019-04-30 01:35:23 +00:00
|
|
|
a = 0, b = intval(h1, tC0(T));
|
|
|
|
}
|
|
|
|
bool operator < (const horo_distance z) {
|
2019-05-06 23:08:49 +00:00
|
|
|
#if CAP_BT
|
2019-04-30 01:35:23 +00:00
|
|
|
if(binarytiling) {
|
|
|
|
if(a < z.a-1e-6) return true;
|
|
|
|
if(a > z.a+1e-6) return false;
|
|
|
|
}
|
2019-05-06 23:08:49 +00:00
|
|
|
#endif
|
2019-04-30 01:35:23 +00:00
|
|
|
return b < z.b - 1e-4;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-08-17 14:47:06 +00:00
|
|
|
template<class T, class U>
|
|
|
|
void virtualRebase(cell*& base, T& at, bool tohex, const U& check) {
|
2019-05-08 16:33:08 +00:00
|
|
|
if((euclid || sphere) && WDIM == 2) {
|
2018-08-17 14:47:06 +00:00
|
|
|
again:
|
2018-11-27 01:32:11 +00:00
|
|
|
if(euwrap) for(int i=0; i<6; i++) {
|
2018-11-27 15:17:20 +00:00
|
|
|
// fix cylinder and square grid
|
2018-08-17 14:47:06 +00:00
|
|
|
auto newat = eumovedir(3+i) * at;
|
|
|
|
if(hdist0(check(newat)) < hdist0(check(at))) {
|
|
|
|
at = newat;
|
|
|
|
base = createMov(base, i);
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else forCellCM(c2, base) {
|
|
|
|
auto newat = inverse(ggmatrix(c2)) * ggmatrix(base) * at;
|
|
|
|
if(hypot(check(newat)[0], check(newat)[1])
|
|
|
|
< hypot(check(at)[0], check(at)[1])) {
|
|
|
|
at = newat;
|
|
|
|
base = c2;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fixelliptic(at);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
at = master_relative(base) * at;
|
|
|
|
base = base->master->c7;
|
|
|
|
|
|
|
|
while(true) {
|
|
|
|
|
2019-04-30 01:35:23 +00:00
|
|
|
horo_distance currz(check(at));
|
|
|
|
|
2018-08-17 14:47:06 +00:00
|
|
|
heptagon *h = base->master;
|
|
|
|
|
|
|
|
cell *newbase = NULL;
|
|
|
|
|
|
|
|
transmatrix bestV;
|
|
|
|
|
2019-05-08 16:33:08 +00:00
|
|
|
if(WDIM == 2 && !binarytiling) for(int d=0; d<S7; d++) {
|
2018-08-17 22:46:45 +00:00
|
|
|
heptspin hs(h, d, false);
|
2018-08-17 14:47:06 +00:00
|
|
|
heptspin hs2 = hs + wstep;
|
2019-05-26 16:04:02 +00:00
|
|
|
transmatrix V2 = spin(-hs2.spin*2*M_PI/S7) * cgi.invheptmove[d];
|
2019-04-30 01:35:23 +00:00
|
|
|
horo_distance newz(check(V2 * at));
|
2018-08-17 14:47:06 +00:00
|
|
|
if(newz < currz) {
|
|
|
|
currz = newz;
|
|
|
|
bestV = V2;
|
2018-08-17 22:46:45 +00:00
|
|
|
newbase = hs2.at->c7;
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(newbase) {
|
|
|
|
base = newbase;
|
|
|
|
at = bestV * at;
|
|
|
|
}
|
|
|
|
else {
|
2018-08-28 15:17:34 +00:00
|
|
|
if(tohex && BITRUNCATED) for(int d=0; d<S7; d++) {
|
2018-08-17 14:47:06 +00:00
|
|
|
cell *c = createMov(base, d);
|
2019-05-26 16:04:02 +00:00
|
|
|
transmatrix V2 = spin(-base->c.spin(d)*2*M_PI/S6) * cgi.invhexmove[d];
|
2019-04-30 01:35:23 +00:00
|
|
|
horo_distance newz(check(V2 * at));
|
2018-08-17 14:47:06 +00:00
|
|
|
if(newz < currz) {
|
|
|
|
currz = newz;
|
|
|
|
bestV = V2;
|
|
|
|
newbase = c;
|
|
|
|
}
|
|
|
|
}
|
2018-09-27 23:49:17 +00:00
|
|
|
if(newbase) {
|
|
|
|
base = newbase;
|
|
|
|
at = bestV * at;
|
|
|
|
}
|
|
|
|
else at = master_relative(base, true) * at;
|
2019-05-08 16:33:08 +00:00
|
|
|
if(binarytiling || (tohex && (GOLDBERG || IRREGULAR)) || WDIM == 3) {
|
2018-09-27 19:51:29 +00:00
|
|
|
while(true) {
|
|
|
|
newbase = NULL;
|
|
|
|
forCellCM(c2, base) {
|
|
|
|
transmatrix V2 = calc_relative_matrix(base, c2, C0);
|
2019-04-30 01:35:23 +00:00
|
|
|
horo_distance newz(check(V2 * at));
|
|
|
|
if(newz < currz) {
|
2018-09-27 19:51:29 +00:00
|
|
|
currz = newz;
|
|
|
|
bestV = V2;
|
|
|
|
newbase = c2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!newbase) break;
|
|
|
|
base = newbase;
|
|
|
|
at = bestV * at;
|
|
|
|
}
|
|
|
|
}
|
2018-08-17 14:47:06 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void virtualRebase(cell*& base, transmatrix& at, bool tohex) {
|
|
|
|
virtualRebase(base, at, tohex, tC0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void virtualRebase(cell*& base, hyperpoint& h, bool tohex) {
|
2018-09-30 14:23:20 +00:00
|
|
|
// we perform fixing in check, so that it works with larger range
|
2019-02-22 19:58:40 +00:00
|
|
|
virtualRebase(base, h, tohex, [] (const hyperpoint& h) {
|
2019-05-08 16:33:08 +00:00
|
|
|
if(hyperbolic && GDIM == 2) return hpxy(h[0], h[1]);
|
|
|
|
if(hyperbolic && GDIM == 3) return hpxy3(h[0], h[1], h[2]);
|
2019-02-22 19:58:40 +00:00
|
|
|
return h;
|
|
|
|
});
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
|
2018-08-18 22:25:43 +00:00
|
|
|
// works only in geometries similar to the standard one, and only on heptagons
|
|
|
|
void virtualRebaseSimple(heptagon*& base, transmatrix& at) {
|
|
|
|
|
|
|
|
while(true) {
|
|
|
|
|
2019-05-08 16:33:08 +00:00
|
|
|
double currz = at[GDIM][GDIM];
|
2018-08-18 22:25:43 +00:00
|
|
|
|
|
|
|
heptagon *h = base;
|
|
|
|
|
|
|
|
heptagon *newbase = NULL;
|
|
|
|
|
2019-02-10 19:36:09 +00:00
|
|
|
transmatrix bestV {};
|
2018-08-18 22:25:43 +00:00
|
|
|
|
|
|
|
for(int d=0; d<S7; d++) {
|
|
|
|
heptspin hs(h, d, false);
|
|
|
|
heptspin hs2 = hs + wstep;
|
2019-05-26 16:04:02 +00:00
|
|
|
transmatrix V2 = spin(-hs2.spin*2*M_PI/S7) * cgi.invheptmove[d] * at;
|
2019-05-08 16:33:08 +00:00
|
|
|
double newz = V2[GDIM][GDIM];
|
2018-08-18 22:25:43 +00:00
|
|
|
if(newz < currz) {
|
|
|
|
currz = newz;
|
|
|
|
bestV = V2;
|
|
|
|
newbase = hs2.at;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(newbase) {
|
|
|
|
base = newbase;
|
|
|
|
at = bestV;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-17 14:47:06 +00:00
|
|
|
double cellgfxdist(cell *c, int i) {
|
2018-11-27 15:15:08 +00:00
|
|
|
if(euclid) {
|
2019-05-26 16:04:02 +00:00
|
|
|
if(c->type == 8 && (i&1)) return cgi.crossf * sqrt(2);
|
|
|
|
return cgi.crossf;
|
2018-11-27 15:15:08 +00:00
|
|
|
}
|
2019-05-11 13:16:08 +00:00
|
|
|
if(NONSTDVAR || archimedean || WDIM == 3) return hdist0(tC0(calc_relative_matrix(c->move(i), c, i)));
|
2019-05-26 16:04:02 +00:00
|
|
|
return !BITRUNCATED ? cgi.tessf : (c->type == 6 && (i&1)) ? cgi.hexhexdist : cgi.crossf;
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
transmatrix cellrelmatrix(cell *c, int i) {
|
2018-08-28 17:06:12 +00:00
|
|
|
if(NONSTDVAR || archimedean) return calc_relative_matrix(c->move(i), c, i);
|
2018-08-17 14:47:06 +00:00
|
|
|
double d = cellgfxdist(c, i);
|
2018-11-27 15:15:08 +00:00
|
|
|
transmatrix T = ddspin(c, i) * xpush(d);
|
|
|
|
if(c->c.mirror(i)) T = T * Mirror;
|
|
|
|
T = T * iddspin(c->move(i), c->c.spin(i), M_PI);
|
|
|
|
return T;
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
double randd() { return (rand() + .5) / (RAND_MAX + 1.); }
|
|
|
|
|
|
|
|
hyperpoint randomPointIn(int t) {
|
2018-08-28 15:17:34 +00:00
|
|
|
if(NONSTDVAR || archimedean) {
|
2018-08-20 14:36:45 +00:00
|
|
|
// Let these geometries be less confusing.
|
|
|
|
// Also easier to implement ;)
|
|
|
|
return xspinpush0(2 * M_PI * randd(), asinh(randd() / 20));
|
|
|
|
}
|
2018-08-17 14:47:06 +00:00
|
|
|
while(true) {
|
2018-08-19 14:28:36 +00:00
|
|
|
hyperpoint h = xspinpush0(2*M_PI*(randd()-.5)/t, asinh(randd()));
|
2018-08-17 14:47:06 +00:00
|
|
|
double d =
|
2019-05-26 16:04:02 +00:00
|
|
|
PURE ? cgi.tessf : t == 6 ? cgi.hexhexdist : cgi.crossf;
|
2018-08-17 14:47:06 +00:00
|
|
|
if(hdist0(h) < hdist0(xpush(-d) * h))
|
|
|
|
return spin(2*M_PI/t * (rand() % t)) * h;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-17 14:53:57 +00:00
|
|
|
hyperpoint get_corner_position(cell *c, int cid, ld cf) {
|
2019-02-17 17:28:20 +00:00
|
|
|
#if CAP_GP
|
2018-08-28 15:17:34 +00:00
|
|
|
if(GOLDBERG) return gp::get_corner_position(c, cid, cf);
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
|
|
|
#if CAP_IRR
|
2018-08-28 15:17:34 +00:00
|
|
|
if(IRREGULAR) {
|
2018-08-17 14:47:06 +00:00
|
|
|
auto& vs = irr::cells[irr::cellindex[c]];
|
|
|
|
return mid_at_actual(vs.vertices[cid], 3/cf);
|
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
|
|
|
#if CAP_BT
|
2018-08-17 14:47:06 +00:00
|
|
|
if(binarytiling) {
|
2019-05-08 16:33:08 +00:00
|
|
|
if(WDIM == 3) {
|
2019-02-24 18:40:01 +00:00
|
|
|
println(hlog, "get_corner_position called");
|
|
|
|
return C0;
|
|
|
|
}
|
2019-05-09 15:00:05 +00:00
|
|
|
return mid_at_actual(binary::get_horopoint(binary::get_corner_horo_coordinates(c, cid)), 3/cf);
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
|
|
|
#if CAP_ARCM
|
2018-08-19 21:06:32 +00:00
|
|
|
if(archimedean) {
|
2018-08-20 00:02:45 +00:00
|
|
|
auto &ac = arcm::current;
|
2018-08-29 02:28:34 +00:00
|
|
|
if(PURE) {
|
|
|
|
if(arcm::id_of(c->master) >= ac.N*2) return C0;
|
|
|
|
auto& t = ac.get_triangle(c->master, cid-1);
|
|
|
|
return xspinpush0(-t.first, t.second * 3 / cf * (ac.real_faces == 0 ? 0.999 : 1));
|
|
|
|
}
|
|
|
|
if(BITRUNCATED) {
|
|
|
|
auto& t0 = ac.get_triangle(c->master, cid-1);
|
|
|
|
auto& t1 = ac.get_triangle(c->master, cid);
|
|
|
|
hyperpoint h0 = xspinpush0(-t0.first, t0.second * 3 / cf * (ac.real_faces == 0 ? 0.999 : 1));
|
|
|
|
hyperpoint h1 = xspinpush0(-t1.first, t1.second * 3 / cf * (ac.real_faces == 0 ? 0.999 : 1));
|
|
|
|
return mid3(C0, h0, h1);
|
|
|
|
}
|
2018-08-30 00:11:43 +00:00
|
|
|
if(DUAL) {
|
|
|
|
auto& t0 = ac.get_triangle(c->master, 2*cid-1);
|
|
|
|
return xspinpush0(-t0.first, t0.second * 3 / cf * (ac.real_faces == 0 ? 0.999 : 1));
|
|
|
|
}
|
2018-08-17 19:42:42 +00:00
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
2018-08-28 15:17:34 +00:00
|
|
|
if(PURE) {
|
2019-05-26 16:04:02 +00:00
|
|
|
return ddspin(c,cid,M_PI/S7) * xpush0(cgi.hcrossf * 3 / cf);
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
2018-08-28 15:17:34 +00:00
|
|
|
if(BITRUNCATED) {
|
2018-08-17 14:47:06 +00:00
|
|
|
if(!ishept(c))
|
2019-05-26 16:04:02 +00:00
|
|
|
return ddspin(c,cid,M_PI/S6) * xpush0(cgi.hexvdist * 3 / cf);
|
2018-08-17 14:47:06 +00:00
|
|
|
else
|
2019-05-26 16:04:02 +00:00
|
|
|
return ddspin(c,cid,M_PI/S7) * xpush0(cgi.rhexf * 3 / cf);
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
return C0;
|
|
|
|
}
|
|
|
|
|
|
|
|
hyperpoint nearcorner(cell *c, int i) {
|
2018-08-28 15:17:34 +00:00
|
|
|
if(GOLDBERG) {
|
2018-08-17 14:47:06 +00:00
|
|
|
cellwalker cw(c, i);
|
|
|
|
cw += wstep;
|
2018-08-17 22:46:45 +00:00
|
|
|
transmatrix cwm = calc_relative_matrix(cw.at, c, i);
|
2018-08-17 14:47:06 +00:00
|
|
|
if(elliptic && cwm[2][2] < 0) cwm = centralsym * cwm;
|
|
|
|
return cwm * C0;
|
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#if CAP_IRR
|
2018-08-28 15:17:34 +00:00
|
|
|
if(IRREGULAR) {
|
2018-08-17 14:47:06 +00:00
|
|
|
auto& vs = irr::cells[irr::cellindex[c]];
|
|
|
|
hyperpoint nc = vs.jpoints[vs.neid[i]];
|
|
|
|
return mid_at(C0, nc, .94);
|
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
|
|
|
#if CAP_ARCM
|
2018-08-19 21:06:32 +00:00
|
|
|
if(archimedean) {
|
2018-08-29 02:28:34 +00:00
|
|
|
if(PURE) {
|
|
|
|
auto &ac = arcm::current;
|
|
|
|
auto& t = ac.get_triangle(c->master, i-1);
|
|
|
|
int id = arcm::id_of(c->master);
|
|
|
|
int id1 = ac.get_adj(ac.get_adj(c->master, i-1), -2).first;
|
|
|
|
return xspinpush0(-t.first - M_PI / c->type, ac.inradius[id/2] + ac.inradius[id1/2] + (ac.real_faces == 0 ? 2 * M_PI / (ac.N == 2 ? 2.1 : ac.N) : 0));
|
|
|
|
}
|
|
|
|
if(BITRUNCATED) {
|
|
|
|
auto &ac = arcm::current;
|
|
|
|
auto& t = ac.get_triangle(c->master, i);
|
|
|
|
return xspinpush0(-t.first, t.second);
|
|
|
|
}
|
2018-08-30 00:11:43 +00:00
|
|
|
if(DUAL) {
|
|
|
|
auto &ac = arcm::current;
|
|
|
|
auto& t = ac.get_triangle(c->master, i * 2);
|
|
|
|
return xspinpush0(-t.first, t.second);
|
|
|
|
}
|
2018-08-17 19:42:42 +00:00
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
|
|
|
#if CAP_BT
|
2018-08-17 14:47:06 +00:00
|
|
|
if(binarytiling) {
|
2019-05-08 16:33:08 +00:00
|
|
|
if(WDIM == 3) {
|
2019-02-24 18:40:01 +00:00
|
|
|
println(hlog, "nearcorner called");
|
|
|
|
return Hypc;
|
|
|
|
}
|
2018-08-17 14:47:06 +00:00
|
|
|
ld yx = log(2) / 2;
|
|
|
|
ld yy = yx;
|
|
|
|
// ld xx = 1 / sqrt(2)/2;
|
|
|
|
hyperpoint neis[7];
|
2019-05-09 15:00:05 +00:00
|
|
|
neis[0] = binary::get_horopoint(0, 1);
|
|
|
|
neis[1] = binary::get_horopoint(yy*2, 1);
|
|
|
|
neis[2] = binary::get_horopoint(yy*2, 0);
|
|
|
|
neis[3] = binary::get_horopoint(yy*2, -1);
|
|
|
|
neis[4] = binary::get_horopoint(0, -1);
|
2018-08-17 14:47:06 +00:00
|
|
|
if(c->type == 7)
|
2019-05-09 15:00:05 +00:00
|
|
|
neis[5] = binary::get_horopoint(-yy*2, -.5),
|
|
|
|
neis[6] = binary::get_horopoint(-yy*2, +.5);
|
2018-08-17 14:47:06 +00:00
|
|
|
else
|
2019-05-09 15:00:05 +00:00
|
|
|
neis[5] = binary::get_horopoint(-yy*2, 0);
|
2018-08-17 14:47:06 +00:00
|
|
|
return neis[i];
|
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
2018-08-19 11:46:05 +00:00
|
|
|
double d = cellgfxdist(c, i);
|
2018-08-19 14:28:36 +00:00
|
|
|
return ddspin(c, i) * xpush0(d);
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hyperpoint farcorner(cell *c, int i, int which) {
|
2019-02-17 17:28:20 +00:00
|
|
|
#if CAP_GP
|
2018-08-28 15:17:34 +00:00
|
|
|
if(GOLDBERG) {
|
2018-08-17 14:47:06 +00:00
|
|
|
cellwalker cw(c, i);
|
|
|
|
int hint = cw.spin;
|
|
|
|
cw += wstep;
|
2018-08-17 22:46:45 +00:00
|
|
|
transmatrix cwm = calc_relative_matrix(cw.at, c, hint);
|
2018-08-20 15:26:29 +00:00
|
|
|
if(elliptic && cwm[2][2] < 0) cwm = centralsym * cwm;
|
2018-08-17 14:47:06 +00:00
|
|
|
// hyperpoint nfar = cwm*C0;
|
2018-08-17 22:46:45 +00:00
|
|
|
auto li1 = gp::get_local_info(cw.at);
|
2018-08-17 14:47:06 +00:00
|
|
|
if(which == 0)
|
|
|
|
return cwm * get_corner_position(li1, (cw+2).spin);
|
|
|
|
if(which == 1)
|
|
|
|
return cwm * get_corner_position(li1, (cw-1).spin);
|
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
|
|
|
#if CAP_IRR
|
2018-08-28 15:17:34 +00:00
|
|
|
if(IRREGULAR) {
|
2018-08-17 14:47:06 +00:00
|
|
|
auto& vs = irr::cells[irr::cellindex[c]];
|
|
|
|
int neid = vs.neid[i];
|
|
|
|
int spin = vs.spin[i];
|
|
|
|
auto &vs2 = irr::cells[neid];
|
|
|
|
int cor2 = isize(vs2.vertices);
|
|
|
|
transmatrix rel = vs.rpusher * vs.relmatrices[vs2.owner] * vs2.pusher;
|
|
|
|
|
|
|
|
if(which == 0) return rel * vs2.vertices[(spin+2)%cor2];
|
|
|
|
if(which == 1) return rel * vs2.vertices[(spin+cor2-1)%cor2];
|
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
|
|
|
#if CAP_BT
|
2018-08-19 11:46:05 +00:00
|
|
|
if(binarytiling)
|
2018-08-17 14:47:06 +00:00
|
|
|
return nearcorner(c, (i+which) % c->type); // lazy
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
|
|
|
#if CAP_ARCM
|
2018-08-19 21:06:32 +00:00
|
|
|
if(archimedean) {
|
2018-08-29 02:28:34 +00:00
|
|
|
if(PURE) {
|
|
|
|
auto &ac = arcm::current;
|
|
|
|
auto& t = ac.get_triangle(c->master, i-1);
|
|
|
|
int id = arcm::id_of(c->master);
|
|
|
|
auto id1 = ac.get_adj(ac.get_adj(c->master, i-1), -2).first;
|
|
|
|
int n1 = isize(ac.adjacent[id1]);
|
|
|
|
return spin(-t.first - M_PI / c->type) * xpush(ac.inradius[id/2] + ac.inradius[id1/2]) * xspinpush0(M_PI + M_PI/n1*(which?3:-3), ac.circumradius[id1/2]);
|
|
|
|
}
|
2018-08-30 00:11:43 +00:00
|
|
|
if(BITRUNCATED || DUAL) {
|
2018-08-30 14:04:28 +00:00
|
|
|
int mul = DUALMUL;
|
2018-08-29 02:28:34 +00:00
|
|
|
auto &ac = arcm::current;
|
2018-08-30 00:11:43 +00:00
|
|
|
auto adj = ac.get_adj(c->master, i * mul);
|
2018-08-29 02:28:34 +00:00
|
|
|
heptagon h; cell cx; cx.master = &h;
|
|
|
|
arcm::id_of(&h) = adj.first;
|
|
|
|
arcm::parent_index_of(&h) = adj.second;
|
|
|
|
|
|
|
|
auto& t1 = arcm::current.get_triangle(c->master, i);
|
|
|
|
|
|
|
|
auto& t2 = arcm::current.get_triangle(adj);
|
|
|
|
|
2018-08-30 00:11:43 +00:00
|
|
|
return spin(-t1.first) * xpush(t1.second) * spin(M_PI + t2.first) * get_corner_position(&cx, which ? -mul : 2*mul);
|
2018-08-29 02:28:34 +00:00
|
|
|
}
|
2018-08-19 11:46:05 +00:00
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
2018-08-19 11:46:05 +00:00
|
|
|
|
2018-08-20 14:50:35 +00:00
|
|
|
return cellrelmatrix(c, i) * get_corner_position(c->move(i), (cellwalker(c, i) + wstep + (which?-1:2)).spin);
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
|
|
|
|
2018-08-20 15:26:29 +00:00
|
|
|
hyperpoint midcorner(cell *c, int i, ld v) {
|
|
|
|
auto hcor = farcorner(c, i, 0);
|
|
|
|
auto tcor = get_corner_position(c, i, 3);
|
|
|
|
return mid_at(tcor, hcor, v);
|
|
|
|
}
|
|
|
|
|
2018-08-17 14:47:06 +00:00
|
|
|
hyperpoint get_warp_corner(cell *c, int cid) {
|
2018-08-20 15:26:29 +00:00
|
|
|
// midcorner(c, cid, .5) but sometimes easier versions exist
|
2019-02-17 17:28:20 +00:00
|
|
|
#if CAP_GP
|
2018-08-28 15:17:34 +00:00
|
|
|
if(GOLDBERG) return gp::get_corner_position(c, cid, 2);
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
|
|
|
#if CAP_IRR || CAP_ARCM
|
2018-08-28 15:17:34 +00:00
|
|
|
if(IRREGULAR || archimedean) return midcorner(c, cid, .5);
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
2019-05-26 16:04:02 +00:00
|
|
|
return ddspin(c,cid,M_PI/S7) * xpush0(cgi.tessf/2);
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|
2019-04-08 14:16:16 +00:00
|
|
|
|
|
|
|
vector<hyperpoint> hrmap::get_vertices(cell* c) {
|
|
|
|
vector<hyperpoint> res;
|
|
|
|
for(int i=0; i<c->type; i++) res.push_back(get_corner_position(c, i, 3));
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2018-08-17 14:47:06 +00:00
|
|
|
}
|