| 201 | } |
| 202 | |
| 203 | static void move_hand(F32 dt) |
| 204 | { |
| 205 | F32 old_vel = shared.vel; |
| 206 | |
| 207 | shared.vel = shared.accel * dt + old_vel; |
| 208 | shared.loc += shared.dir * (0.5f * shared.accel * dt * dt + old_vel * dt); |
| 209 | } |
| 210 | |
| 211 | static void set_rect_verts(rwGameCube2DVertex*, F32, F32, F32, F32, iColor_tag c, F32 nsz, |
| 212 | F32 rcz); |
no outgoing calls
no test coverage detected