How to use the pyntcloud.structures.base.Structure.__init__ function in pyntcloud

To help you get started, we’ve selected a few pyntcloud examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github daavoo / pyntcloud / pyntcloud / structures / convex_hull.py View on Github external
def __init__(self, points,
                 incremental=False,
                 qhull_options=None):
        Structure.__init__(self, points=points)
        self._incremental = incremental
        self._qhull_options = qhull_options
github daavoo / pyntcloud / pyntcloud / structures / kdtree.py View on Github external
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
github daavoo / pyntcloud / pyntcloud / structures / delanuay.py View on Github external
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