mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-27 14:37:16 +00:00
fixed discrepancy in last
This commit is contained in:
parent
b6872b66a1
commit
6e0de94ff1
@ -1511,8 +1511,9 @@ namespace mapeditor {
|
|||||||
|
|
||||||
shiftpoint in_front_dist(ld d) {
|
shiftpoint in_front_dist(ld d) {
|
||||||
|
|
||||||
double mx = current_display->tanfov * (mousex - current_display->xcenter)/current_display->radius;
|
ld ys = current_display->xsize/2;
|
||||||
double my = current_display->tanfov * (mousey - current_display->ycenter)/current_display->radius/pconf.stretch;
|
double mx = current_display->tanfov * (mousex - current_display->xcenter)/ys;
|
||||||
|
double my = current_display->tanfov * (mousey - current_display->ycenter)/ys/pconf.stretch;
|
||||||
hyperpoint tgt = point3(mx, my, 1);
|
hyperpoint tgt = point3(mx, my, 1);
|
||||||
tgt *= d / hypot_d(3, tgt);
|
tgt *= d / hypot_d(3, tgt);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user