__init__.py 700 B

1234567891011121314151617181920212223242526272829
  1. """
  2. Spatial Transformations (:mod:`scipy.spatial.transform`)
  3. ========================================================
  4. .. currentmodule:: scipy.spatial.transform
  5. This package implements various spatial transformations. For now,
  6. only rotations are supported.
  7. Rotations in 3 dimensions
  8. -------------------------
  9. .. autosummary::
  10. :toctree: generated/
  11. Rotation
  12. Slerp
  13. RotationSpline
  14. """
  15. from ._rotation import Rotation, Slerp
  16. from ._rotation_spline import RotationSpline
  17. # Deprecated namespaces, to be removed in v2.0.0
  18. from . import rotation
  19. __all__ = ['Rotation', 'Slerp', 'RotationSpline']
  20. from scipy._lib._testutils import PytestTester
  21. test = PytestTester(__name__)
  22. del PytestTester