-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from jorenham/stubtest/scipy.spatial
`scipy.spatial`
- Loading branch information
Showing
16 changed files
with
402 additions
and
275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,35 @@ | ||
from scipy._lib._testutils import PytestTester as PytestTester | ||
from scipy._typing import Untyped | ||
from . import ckdtree as ckdtree, distance as distance, kdtree as kdtree, qhull as qhull, transform as transform | ||
from ._ckdtree import * | ||
from ._geometric_slerp import geometric_slerp as geometric_slerp | ||
from ._kdtree import * | ||
from ._plotutils import * | ||
from ._procrustes import procrustes as procrustes | ||
from ._qhull import * | ||
from ._spherical_voronoi import SphericalVoronoi as SphericalVoronoi | ||
from . import ckdtree, distance, kdtree, qhull, transform | ||
from ._ckdtree import cKDTree | ||
from ._geometric_slerp import geometric_slerp | ||
from ._kdtree import KDTree, Rectangle, distance_matrix, minkowski_distance, minkowski_distance_p | ||
from ._plotutils import convex_hull_plot_2d, delaunay_plot_2d, voronoi_plot_2d | ||
from ._procrustes import procrustes | ||
from ._qhull import ConvexHull, Delaunay, HalfspaceIntersection, QhullError, Voronoi, tsearch | ||
from ._spherical_voronoi import SphericalVoronoi | ||
|
||
test: Untyped | ||
__all__ = [ | ||
"ConvexHull", | ||
"Delaunay", | ||
"HalfspaceIntersection", | ||
"KDTree", | ||
"QhullError", | ||
"Rectangle", | ||
"SphericalVoronoi", | ||
"Voronoi", | ||
"cKDTree", | ||
"ckdtree", | ||
"convex_hull_plot_2d", | ||
"delaunay_plot_2d", | ||
"distance", | ||
"distance", | ||
"distance_matrix", | ||
"geometric_slerp", | ||
"kdtree", | ||
"minkowski_distance", | ||
"minkowski_distance_p", | ||
"procrustes", | ||
"qhull", | ||
"transform", | ||
"tsearch", | ||
"voronoi_plot_2d", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.