d_a_obj_utajima_island OK (#73)

* d_a_obj_utajima_island OK

* Name one field

* mAngle constants
This commit is contained in:
robojumper
2024-10-20 15:59:15 +02:00
committed by GitHub
parent e6dd20ada1
commit 2577b3a537
12 changed files with 238 additions and 38 deletions
+14
View File
@@ -37,6 +37,20 @@ struct mAng {
}
s16 mVal;
static mAng fromDeg(f32 deg) {
return deg * sDegToAng;
}
private:
static const f32 sHalfCircleDeg;
static const f32 sAngToDeg;
static const f32 sAngToRad;
static const f32 NotSure;
static const f32 sDegToRad;
static const f32 sDegToAng;
static const f32 sRadToAng;
static const f32 sRadToDeg;
};
class mAng3_c {