mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-17 19:40:10 +00:00
more functions exported
This commit is contained in:
parent
39e77cee9f
commit
e86f3be0b6
18
hyper.h
18
hyper.h
@ -909,6 +909,9 @@ namespace conformal {
|
|||||||
extern vector<shmup::monster*> v;
|
extern vector<shmup::monster*> v;
|
||||||
extern double phase;
|
extern double phase;
|
||||||
void applyIB();
|
void applyIB();
|
||||||
|
|
||||||
|
void progress_screen();
|
||||||
|
void progress(string str);
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace polygonal {
|
namespace polygonal {
|
||||||
@ -2852,3 +2855,18 @@ template<class T> array<T, 2> make_array(T a, T b) { array<T,2> x; x[0] = a; x[1
|
|||||||
|
|
||||||
extern cell *lastmountpos[MAXPLAYER];
|
extern cell *lastmountpos[MAXPLAYER];
|
||||||
|
|
||||||
|
ld hypot3(const hyperpoint& h);
|
||||||
|
|
||||||
|
extern const hyperpoint Hypc;
|
||||||
|
ld det(const transmatrix& T);
|
||||||
|
void queuechr(const hyperpoint& h, int size, char chr, int col, int frame = 0);
|
||||||
|
|
||||||
|
string fts(float x);
|
||||||
|
bool model_needs_depth();
|
||||||
|
|
||||||
|
hyperpoint hpxy(ld x, ld y);
|
||||||
|
ld sqhypot2(const hyperpoint& h);
|
||||||
|
ld hypot2(const hyperpoint& h);
|
||||||
|
transmatrix pushxto0(const hyperpoint& H);
|
||||||
|
transmatrix rpushxto0(const hyperpoint& H);
|
||||||
|
transmatrix spintox(const hyperpoint& H);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user