You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 22, 2019. It is now read-only.
Currently QuickScan's zig-zag set of waypoints is generated by accepting a rectangle from the ground control station. We want to be able to generate an appropriate set of waypoints to scan any polygon shape.
Then, modify SetWps in waypoints.cpp by changing the function's parameters to accept a search area bounded by n points. Then generate a set of waypoints that will scan that polygon.
#27 must be solved before attempting this.
Currently QuickScan's zig-zag set of waypoints is generated by accepting a rectangle from the ground control station. We want to be able to generate an appropriate set of waypoints to scan any polygon shape.
First, research how to create a function that accepts an [unknown number of arguments] (https://stackoverflow.com/questions/10071186/function-with-unknown-number-of-parameters-in-c)
Then, modify SetWps in waypoints.cpp by changing the function's parameters to accept a search area bounded by n points. Then generate a set of waypoints that will scan that polygon.