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

1""" 

2Spatial Transformations (:mod:`scipy.spatial.transform`) 

3======================================================== 

4 

5.. currentmodule:: scipy.spatial.transform 

6 

7This package implements various spatial transformations. For now, 

8only rotations are supported. 

9 

10Rotations in 3 dimensions 

11------------------------- 

12.. autosummary:: 

13 :toctree: generated/ 

14 

15 Rotation 

16 Slerp 

17 RotationSpline 

18""" 

19from ._rotation import Rotation, Slerp 

20from ._rotation_spline import RotationSpline 

21 

22# Deprecated namespaces, to be removed in v2.0.0 

23from . import rotation 

24 

25__all__ = ['Rotation', 'Slerp', 'RotationSpline'] 

26 

27from scipy._lib._testutils import PytestTester 

28test = PytestTester(__name__) 

29del PytestTester