1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-12 07:16:01 +00:00

options -W3 and -top

This commit is contained in:
Zeno Rogue
2018-03-30 00:20:33 +02:00
parent 21a7c8fca9
commit eafd5a1eab
5 changed files with 26 additions and 4 deletions

View File

@@ -777,11 +777,13 @@ int surface_args() {
if(0) ;
else if(argis("-kuen")) {
PHASE(3);
calcparam();
run_shape(dsKuen);
}
else if(argis("-dini")) {
PHASE(3);
calcparam();
shift();
dini_b = argf();
@@ -789,6 +791,7 @@ int surface_args() {
}
else if(argis("-barrel")) {
PHASE(3);
calcparam();
shift();
hyper_b = argf();
@@ -796,16 +799,19 @@ int surface_args() {
}
else if(argis("-tractricoid")) {
PHASE(3);
calcparam();
run_shape(dsTractricoid);
}
else if(argis("-hemi")) {
PHASE(3);
calcparam();
run_shape(dsHemisphere);
}
else if(argis("-hyperb")) {
PHASE(3);
calcparam();
run_shape(dsHyperboloid);
}