Raahi-18
Raahi-18
Fixed three bugs in math.py: 1. Fixed `rand_vec_spread_deg` to convert degrees to radians before passing to `Vec2.from_polar`. #2648 2. Fixed `rotate_around_point` to properly rotate around the `source` point instead of...
The get_angle_radians function has incorrect parameter order in the math.atan2() call at line 454, causing it to return angles rotated by 90 degrees from the expected result. Incorrect code: `return...
The rotate_around_point function in math.py has a bug on line 394 where it adds the rotated displacement vector to the target point instead of the source point (rotation center). The...