mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-19 07:20:25 +00:00
nilv:: lazy inverse_exp does 5 steps
This commit is contained in:
parent
4d64618600
commit
990bddb58d
@ -550,7 +550,7 @@ namespace nisot {
|
|||||||
|
|
||||||
hyperpoint inverse_exp(const hyperpoint h, iePrecision p) {
|
hyperpoint inverse_exp(const hyperpoint h, iePrecision p) {
|
||||||
if(sol) return solv::get_inverse_exp(h, p == iLazy);
|
if(sol) return solv::get_inverse_exp(h, p == iLazy);
|
||||||
if(nil) return nilv::get_inverse_exp(h, 10);
|
if(nil) return nilv::get_inverse_exp(h, p == iLazy ? 5 : 20);
|
||||||
return point3(h[0], h[1], h[2]);
|
return point3(h[0], h[1], h[2]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user