nilv:: projection names

This commit is contained in:
Zeno Rogue 2019-08-06 21:01:21 +02:00
parent e62a3c0d8e
commit 23e147a731
2 changed files with 2 additions and 2 deletions

View File

@ -654,7 +654,7 @@ namespace conformal {
string get_model_name(eModel m) {
if(m == mdDisk && DIM == 3 && hyperbolic) return XLAT("ball model/Gans");
if(sol) {
if(nonisotropic) {
if(m == mdDisk) return XLAT("simple model: projection");
if(m == mdPerspective) return XLAT("simple model: perspective");
if(m == mdGeodesic) return XLAT("native perspective");

View File

@ -448,7 +448,7 @@ void ge_select_tiling(const vector<eGeometry>& lst) {
}
string current_proj_name() {
if(pmodel != mdDisk || sol)
if(pmodel != mdDisk || nonisotropic)
return conformal::get_model_name(pmodel);
else if(hyperbolic && vid.alpha == 1)
return XLAT("Poincaré model");