Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def __init__(self, points,
incremental=False,
qhull_options=None):
Structure.__init__(self, points=points)
self._incremental = incremental
self._qhull_options = qhull_options
def __init__(self, *, points, leafsize=16, compact_nodes=False, balanced_tree=False):
Structure.__init__(self, points=points)
self._leafsize = leafsize
self._compact_nodes = compact_nodes
self._balanced_tree = balanced_tree
def __init__(self, points,
furthest_site=False,
incremental=False,
qhull_options=None):
Structure.__init__(self, points)
self._furthest_site = furthest_site
self._incremental = incremental
self._qhull_options = qhull_options