Metadata-Version: 1.1
Name: visvis
Version: 1.9
Summary: An object oriented approach to visualization of 1D to 4D data.
Home-page: http://code.google.com/p/visvis/
Author: Almar Klein
Author-email: a.klein@science-applied.nl
License: (new) BSD
Download-URL: http://code.google.com/p/visvis/downloads/list
Description:  
        Visvis is a pure Python library for visualization of 1D to 4D data in an
        object oriented way. Essentially, visvis is an object oriented layer of
        Python on top of OpenGl, thereby combining the power of OpenGl with the
        usability of Python. A Matlab-like interface in the form of a set of
        functions allows easy creation of objects (e.g. plot(), imshow(), volshow(), 
        surf()). 
        
        With visvis a range of different data can be visualized by simply adding
        world objects to a scene (or axes). These world objects can be anything
        from plots (lines with markers), to images, 3D rendered volumes, 
        shaded meshes, or you can program your own world object class. If required, 
        these data can also be moved in time.
        
        Visvis can be used in Python scripts, interactive Python sessions (as
        with IPython or IEP) and can be embedded in applications.
        
        Requirements:
          * Numpy
          * PyOpengl
          * A backend GUI toolkit (PySide, PyQt4, wxPython, GTK, fltk)
          * (optionally, to enable reading and writing of images) imageio or PIL
        
        usage:
        import visvis as vv
        
        All wobjects, wibjects and functions are present in the visvis 
        namespace. For clean lists, see vv.wibjects, vv.wobjects, or vv.functions, 
        respectively.
        
        For more help, see ...
          * the docstrings
          * the examples in the examples dir
          * the examples at the bottom of the function modules (in the functions dir)
          * the online docs: http://code.google.com/p/visvis/
        
        Visvis is maintained by Almar Klein.
        
        
Keywords: visualization OpenGl medical imaging 3D plotting numpy
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Provides: visvis
