Metadata-Version: 1.1
Name: mvp
Version: 0.3.0
Summary: Manipulate Maya 3D Viewports.
Home-page: http://github.com/danbradham/mvp.git
Author: Dan Bradham
Author-email: danielbradham@gmail.com
License: MIT
Description: .. image:: https://readthedocs.org/projects/mvp/badge/?version=latest
            :target: https://readthedocs.org/projects/mvp/?badge=latest
            :alt: Documentation Status
        
        .. image:: https://pypip.in/version/mvp/badge.svg
            :target: https://testpypi.python.org/pypi/mvp/
            :alt: Latest Version
        
        =======================
        MVP - Maya Viewport API
        =======================
        
        I really needed this...
        
        This module exists to unify and pythonify the various commands and apis necessary to manipulate Maya's 3D Viewports. These include, hardwareRenderGlobal attributes, modelPanel and modelEditor commands, as well as some key features of OpenMayaUI's M3dView class.
        
        ::
        
            from mvp import Viewport
        
            view = Viewport.active()
            view.camera = 'top'
            view.background = 0.5, 0.5, 0.5
            view.nurbsCurves = False
        
        
        Features
        ========
        
        * Unified api for manipulating Maya Viewports
        
        * Get or set viewport state (all attributes). Making it easy to restore a Viewport to a previous configuration.
        
        * Easily set focus and playblast Viewports. Much more consistent than using active view.
        
        * Draw text in Viewports using QLabels.
        
        * Show identifiers in viewports, making it easy to grab the correct viewport at a glance.
        
        
        Get MVP
        =======
        
        PyPi
        ----
        MVP is available through the python package index as **mvp**.
        
        ::
        
            pip install mvp
        
        Distutils/Setuptools
        --------------------
        
        ::
        
            git clone git@github.com/danbradham/mvp.git
            cd mvp
            python setup.py install
        
        
        Documentation
        =============
        
        For more information visit the `docs <http://mvp.readthedocs.org>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
