1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-20 07:35:13 +00:00

3d:: *_d functions now consistently put d as the first argument

This commit is contained in:
?
2019-02-27 19:33:13 +01:00
committed by Zeno Rogue
parent 2f66a64ce3
commit 041c7af987
5 changed files with 24 additions and 24 deletions

View File

@@ -3593,8 +3593,8 @@ bool model_needs_depth();
hyperpoint hpxy(ld x, ld y);
hyperpoint hpxy3(ld x, ld y, ld z);
ld sqhypot_d(const hyperpoint& h, int d);
ld hypot_d(const hyperpoint& h, int d);
ld sqhypot_d(int d, const hyperpoint& h);
ld hypot_d(int d, const hyperpoint& h);
transmatrix pushxto0(const hyperpoint& H);
transmatrix rpushxto0(const hyperpoint& H);
transmatrix spintox(const hyperpoint& H);