mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-10-21 00:47:40 +00:00
line quality option
This commit is contained in:
6
hyper.h
6
hyper.h
@@ -809,6 +809,8 @@ struct videopar {
|
||||
ld ballangle, ballproj, euclid_to_sphere, twopoint_param, stretch;
|
||||
int mobilecompasssize;
|
||||
int aurastr, aurasmoothen;
|
||||
|
||||
int linequality;
|
||||
|
||||
bool full;
|
||||
|
||||
@@ -3742,4 +3744,8 @@ namespace ors {
|
||||
|
||||
bool saved_tortoise_on(cell *c);
|
||||
|
||||
#define RING(i) for(double i=0; i<=S84+1e-6; i+=S3 * pow(.5, vid.linequality))
|
||||
#define REVRING(i) for(double i=S84; i>=-1e-6; i-=S3 * pow(.5, vid.linequality))
|
||||
#define PRING(i) for(double i=0; i<=S84+1e-6; i+= pow(.5, vid.linequality))
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user