12345678910111213141516171819202122232425262728 |
- """
- ========================================================
- Spatial Transformations (:mod:`scipy.spatial.transform`)
- ========================================================
- .. currentmodule:: scipy.spatial.transform
- This package implements various spatial transformations. For now,
- only rotations are supported.
- Rotations in 3 dimensions
- =========================
- .. autosummary::
- :toctree: generated/
- Rotation
- Slerp
- """
- from __future__ import division, print_function, absolute_import
- from .rotation import Rotation, Slerp
- __all__ = ['Rotation', 'Slerp']
- from scipy._lib._testutils import PytestTester
- test = PytestTester(__name__)
- del PytestTester
|