/usr/share/pyshared/mayavi/modules/api.py is in mayavi2 4.1.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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
# Copyright (c) 2007, 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
|