File: __init__.py

package info (click to toggle)
python-vispy 0.15.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,868 kB
  • sloc: python: 59,799; javascript: 6,800; makefile: 69; sh: 6
file content (50 lines) | stat: -rw-r--r-- 2,228 bytes parent folder | download | duplicates (2)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
# Copyright (c) Vispy Development Team. All Rights Reserved.
# Distributed under the (new) BSD License. See LICENSE.txt for more info.
"""
This module provides a library of Visual classes, which are drawable objects
intended to encapsulate simple graphic objects such as lines, meshes, points,
2D shapes, images, text, etc.

These classes define only the OpenGL machinery and connot be used directly in
a scenegraph. For scenegraph use, see the complementary Visual+Node classes
defined in vispy.scene.
"""

from .axis import AxisVisual  # noqa
from .box import BoxVisual  # noqa
from .cube import CubeVisual  # noqa
from .ellipse import EllipseVisual  # noqa
from .gridlines import GridLinesVisual  # noqa
from .image import ImageVisual  # noqa
from .image_complex import ComplexImageVisual  # noqa
from .gridmesh import GridMeshVisual  # noqa
from .histogram import HistogramVisual  # noqa
from .infinite_line import InfiniteLineVisual  # noqa
from .instanced_mesh import InstancedMeshVisual  # noqa
from .isocurve import IsocurveVisual  # noqa
from .isoline import IsolineVisual  # noqa
from .isosurface import IsosurfaceVisual  # noqa
from .line import LineVisual, ArrowVisual  # noqa
from .linear_region import LinearRegionVisual  # noqa
from .line_plot import LinePlotVisual  # noqa
from .markers import MarkersVisual  # noqa
from .mesh import MeshVisual  # noqa
from .mesh_normals import MeshNormalsVisual  # noqa
from .plane import PlaneVisual  # noqa
from .polygon import PolygonVisual  # noqa
from .rectangle import RectangleVisual  # noqa
from .regular_polygon import RegularPolygonVisual  # noqa
from .scrolling_lines import ScrollingLinesVisual  # noqa
from .spectrogram import SpectrogramVisual  # noqa
from .sphere import SphereVisual  # noqa
from .surface_plot import SurfacePlotVisual  # noqa
from .text import TextVisual  # noqa
from .tube import TubeVisual  # noqa
from .visual import BaseVisual, Visual, CompoundVisual  # noqa
from .volume import VolumeVisual  # noqa
from .xyz_axis import XYZAxisVisual  # noqa
from .border import _BorderVisual  # noqa
from .colorbar import ColorBarVisual  # noqa
from .graphs import GraphVisual  # noqa
from .windbarb import WindbarbVisual  # noqa