CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
qhull.py26 linesDownload Raw Back to spatial
1# This file is not meant for public use and will be removed in SciPy v2.0.0.
2# Use the `scipy.spatial` namespace for importing the functions
3# included below.
4
5from scipy._lib.deprecation import _sub_module_deprecation
6
7
8__all__ = [  # noqa: F822
9    'ConvexHull',
10    'Delaunay',
11    'HalfspaceIntersection',
12    'QhullError',
13    'Voronoi',
14    'tsearch',
15]
16
17
18def __dir__():
19    return __all__
20
21
22def __getattr__(name):
23    return _sub_module_deprecation(sub_package="spatial", module="qhull",
24                                   private_modules=["_qhull"], all=__all__,
25                                   attribute=name)
26 
Aluode/PerceptionLabPortable · CoolFace