Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > media > contrib-backports > by-pkgid > 5a28ce08f20e322d24ac159a4334c346 > files > 2535

python-enthought-mayavi2-2.2.0-1mdv2008.1.x86_64.rpm



.. currentmodule:: enthought.mayavi.mlab

Figure handling functions
=========================

figure
~~~~~~

.. function:: figure(name=None)

    Creates a new scene or retrieves an existing scene. If the mayavi
    engine is not running this also starts it.
    

    


savefig
~~~~~~~

.. function:: savefig(filename, size=None, **kwargs)

    Save the current scene.
    The output format are deduced by the extension to filename.
    Possibilities are png, jpg, bmp, tiff, ps, eps, pdf, rib (renderman),
    oogl (geomview), iv (OpenInventor), vrml, obj (wavefront)
    
    If an additional size (2-tuple) argument is passed the window
    is resized to the specified size in order to produce a
    suitably sized output image.  Please note that when the window
    is resized, the window may be obscured by other widgets and
    the camera zoom is not reset which is likely to produce an
    image that does not reflect what is seen on screen.
    
    Any extra keyword arguments are passed along to the respective
    image format's save method.
    

    


gcf
~~~

.. function:: gcf()

    Return a handle to the current figure.
    

    


clf
~~~

.. function:: clf()

    Clear the current figure.
    

    


draw
~~~~

.. function:: draw()

    Forces a redraw of the current figure.