Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/scipy/spatial/transform/__init__.py: 100%
7 statements
« prev ^ index » next coverage.py v7.3.2, created at 2023-12-12 06:31 +0000
« prev ^ index » next coverage.py v7.3.2, created at 2023-12-12 06:31 +0000
1"""
2Spatial Transformations (:mod:`scipy.spatial.transform`)
3========================================================
5.. currentmodule:: scipy.spatial.transform
7This package implements various spatial transformations. For now,
8only rotations are supported.
10Rotations in 3 dimensions
11-------------------------
12.. autosummary::
13 :toctree: generated/
15 Rotation
16 Slerp
17 RotationSpline
18"""
19from ._rotation import Rotation, Slerp
20from ._rotation_spline import RotationSpline
22# Deprecated namespaces, to be removed in v2.0.0
23from . import rotation
25__all__ = ['Rotation', 'Slerp', 'RotationSpline']
27from scipy._lib._testutils import PytestTester
28test = PytestTester(__name__)
29del PytestTester