File: api.py

package info (click to toggle)
mayavi2 4.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 21,892 kB
  • sloc: python: 49,447; javascript: 32,885; makefile: 129; fortran: 60
file content (34 lines) | stat: -rw-r--r-- 1,134 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
""" Defines the publicly accessible Mayavi2 modules.
"""

# Author: Frederic Petit and Prabhu Ramachandran
# Copyright (c) 2007-2020, Enthought, Inc.
# License: BSD Style.



from .axes import Axes
from .contour_grid_plane import ContourGridPlane
from .custom_grid_plane import CustomGridPlane
from .generic_module import GenericModule
from .glyph import Glyph
from .grid_plane import GridPlane
from .hyper_streamline import HyperStreamline
from .image_actor import ImageActor
from .image_plane_widget import ImagePlaneWidget
from .iso_surface import IsoSurface
from .labels import Labels
from .orientation_axes import OrientationAxes
from .outline import Outline
from .scalar_cut_plane import ScalarCutPlane
from .slice_unstructured_grid import SliceUnstructuredGrid
from .streamline import Streamline
from .structured_grid_outline import StructuredGridOutline
from .surface import Surface
from .text import Text
from .text3d import Text3D
from .tensor_glyph import TensorGlyph
from .vector_cut_plane import VectorCutPlane
from .vectors import Vectors
from .volume import Volume
from .warp_vector_cut_plane import WarpVectorCutPlane