Metadata-Version: 1.0
Name: pymeshio
Version: 2.2.1
Summary: pure python 3d model io library
Home-page: http://meshio.sourceforge.jp/
Author: ousttrue
Author-email: ousttrue@gmail.com
License: zlib
Description: `pymeshio` is a package for 3d model io.
        create for blender import/expoert plugin backend.
        
        Requirements
        ------------
        * Python 3
        * Python 2.7
        
        Features
        --------
        * read       Metasequioa mqo format
        * read/write MikuMikuDance pmd format
        * read/write MikuMikuDance pmx format
        * read       MikuMikuDance vmd format
        * read       MikuMikuDance vpd format
        
        
        Install
        -------
        ::
        
           $ easy_install pymeshio
           or
           $ unzip pymeshio-x.x.x.zip
           $ cd pymeshio-x.x.x
           $ python setup.py install
        
        Usage
        -----
        ::
        
            >>> import pymeshio.pmx.reader
            >>> m=pymeshio.pmx.reader.read_from_file('resources/~NVer2.pmx')
            >>> print(m)
            <pmx-2.0 "Miku Hatsune" 12354vertices>
            >>> print(dir(m))
            ['__class__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__slots__', '__str__', '__subclasshook__', 'bones', 'comment', 'display_slots', 'english_comment', 'english_name', 'indices', 'joints', 'materials', 'morphs', 'name', 'rigidbodies', 'textures', 'version', 'vertices']
        
        ToDo
        --------
        
        * pmd to pmx converter
        * blender importer for pmx
        * blender exporter for pmx
        
        
        New
        -------
        2.2.1 (1011-10-07)
        ~~~~~~~~~~~~~~~~~~
        * importer pmd to pmx converter
        
        2.2.0 (2011-10-03)
        ~~~~~~~~~~~~~~~~~~
        * implement pmx writer
        
        
Keywords: mqo,pmd,pmx,vmd,vpd,mmd,blender
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: zlib/libpng License
Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
