### Description Investigate the effect of initial points outside first quadrant and how this fix affects the metrics: ``` initial_points_outside_first_quadrant = np.where( np.logical_or(x_coord < 0, y_coord < 0) )[0] if len(initial_points_outside_first_quadrant) > 0: angular_velocity = np.delete( angular_velocity, initial_points_outside_first_quadrant ) angular_velocity = np.insert(angular_velocity, 0, 0) ``` ### Tasks - [ ] ### Freeform Notes _No response_