mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-26 18:10:35 +00:00
boundary drawing improvements
This commit is contained in:
parent
1c2dbcc7d9
commit
7806f1cb70
@ -889,6 +889,7 @@ EX void apply_other_model(shiftpoint H_orig, hyperpoint& ret, eModel md) {
|
|||||||
find_zlev(H);
|
find_zlev(H);
|
||||||
models::apply_orientation_yz(H[1], H[2]);
|
models::apply_orientation_yz(H[1], H[2]);
|
||||||
models::apply_orientation(H[0], H[1]);
|
models::apply_orientation(H[0], H[1]);
|
||||||
|
if(euclid) H[0] /= pconf.fisheye_param, H[1] /= pconf.fisheye_param;
|
||||||
ret = to_square(H);
|
ret = to_square(H);
|
||||||
models::apply_orientation(ret[1], ret[0]);
|
models::apply_orientation(ret[1], ret[0]);
|
||||||
models::apply_orientation_yz(ret[2], ret[1]);
|
models::apply_orientation_yz(ret[2], ret[1]);
|
||||||
@ -2497,7 +2498,9 @@ void circle_around_center(ld radius, color_t linecol, color_t fillcol, PPR prio)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#if CAP_QUEUE
|
#if CAP_QUEUE
|
||||||
for(int i=0; i<=360; i++) curvepoint(xspinpush0(i * degree, 10));
|
ld rad = 10;
|
||||||
|
if(euclid) rad = 1000;
|
||||||
|
for(int i=0; i<=360; i++) curvepoint(xspinpush0(i * degree, rad));
|
||||||
auto& c = queuecurve(shiftless(Id), linecol, fillcol, prio);
|
auto& c = queuecurve(shiftless(Id), linecol, fillcol, prio);
|
||||||
if(pmodel == mdDisk && hyperbolic && pconf.alpha <= -1)
|
if(pmodel == mdDisk && hyperbolic && pconf.alpha <= -1)
|
||||||
c.flags |= POLY_FORCE_INVERTED;
|
c.flags |= POLY_FORCE_INVERTED;
|
||||||
@ -2708,7 +2711,7 @@ void queuestraight(hyperpoint X, int style, color_t lc, color_t fc, PPR p) {
|
|||||||
EX void draw_boundary(int w) {
|
EX void draw_boundary(int w) {
|
||||||
|
|
||||||
if(w == 1) return;
|
if(w == 1) return;
|
||||||
if(nonisotropic || (euclid && pmodel != mdFisheye) || gproduct) return;
|
if(nonisotropic || (euclid && !among(pmodel, mdFisheye, mdConformalSquare)) || gproduct) return;
|
||||||
#if CAP_VR
|
#if CAP_VR
|
||||||
if(vrhr::active() && pmodel == mdHyperboloid) return;
|
if(vrhr::active() && pmodel == mdHyperboloid) return;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user