pub type Angle = u16;Expand description
An angle in the range [0, 65535], representing a full rotation [0, 2π).
The mapping is:
0→ 0 radians16384→ π/232768→ π49152→ 3π/265535→ ~2π
This representation allows fast angle arithmetic using only bit shifts and avoids floating-point operations entirely.