Skip to content

Commit

Permalink
reverse direction of dropzone yaw
Browse files Browse the repository at this point in the history
  • Loading branch information
EricPedley committed Jun 26, 2024
1 parent 710aeea commit 066cae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uavf_2024/gnc/dropzone_planner.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def gen_dropzone_plan(self):
fwd_yaw %= 360

side_yaw = np.degrees(np.arccos(np.dot(np.array([1,0]), w_unit)))
side_yaw += 90
side_yaw -= 90
side_yaw %= 360

# Step 2: Generate a "zigzag" pattern to sweep the entire dropzone.
Expand Down

0 comments on commit 066cae3

Please sign in to comment.