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
Add the ChansAlgorithm class to the Core.Algorithms namespace. The class should be instantiable, with possibility for computation and query of the results (the list of coordinates of the convex hull) through property. Support for applications in the form of static methods should also be added.
The text was updated successfully, but these errors were encountered:
Chan's algorithm is an optimal output-sensitive convex hull computation algorithm. It is therefore more efficient thatn the Graham scan algorithm.
See: https://en.wikipedia.org/wiki/Chan%27s_algorithm
Add the
ChansAlgorithm
class to theCore.Algorithms
namespace. The class should be instantiable, with possibility for computation and query of the results (the list of coordinates of the convex hull) through property. Support for applications in the form of static methods should also be added.The text was updated successfully, but these errors were encountered: