Coverage for nilearn/surface/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.9.1, created at 2025-06-16 12:32 +0200

1"""Functions for surface manipulation.""" 

2 

3from .surface import ( 

4 FileMesh, 

5 InMemoryMesh, 

6 PolyData, 

7 PolyMesh, 

8 SurfaceImage, 

9 SurfaceMesh, 

10 load_surf_data, 

11 load_surf_mesh, 

12 vol_to_surf, 

13) 

14 

15__all__ = [ 

16 "FileMesh", 

17 "InMemoryMesh", 

18 "PolyData", 

19 "PolyMesh", 

20 "SurfaceImage", 

21 "SurfaceMesh", 

22 "load_surf_data", 

23 "load_surf_mesh", 

24 "vol_to_surf", 

25]