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
There's a bit of repetition between when each recursive cluster is calculated, and when we pass that final data into the Constrained Delaunay generator.
We already have the vertex points of the Cluster when we create a new instance of it, why then loop around the edges needlessly in the DelaunayCluster class to find a unique set of points we already know at this point.
May be doubly relevant when trying to offset the polygons a little to solve the "parallel movement" problem.
The text was updated successfully, but these errors were encountered:
There's a bit of repetition between when each recursive cluster is calculated, and when we pass that final data into the Constrained Delaunay generator.
We already have the vertex points of the Cluster when we create a new instance of it, why then loop around the edges needlessly in the
DelaunayCluster
class to find a unique set of points we already know at this point.May be doubly relevant when trying to offset the polygons a little to solve the "parallel movement" problem.
The text was updated successfully, but these errors were encountered: