Metadata-Version: 2.1
Name: python-openctm-nightly
Version: 1.0.10a20199261212
Summary: Python Interface for the OpenCTM File Format (nightly)
Home-page: https://github.com/lejafar/python-openctm
Author: Rafael Hautekiet
Author-email: rafaelhautekiet@gmail.com
License: zlib License
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Natural Language :: English
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: zlib/libpng License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: numpy (>=1.14.2)

Python-OpenCTM (nightly)
==============
[![Build Status](https://travis-ci.org/lejafar/Python-OpenCTM.svg?branch=feature/nightly)](https://travis-ci.org/lejafar/Python-OpenCTM) [![PyPI version](https://badge.fury.io/py/python-openctm-nightly.svg)](https://badge.fury.io/py/python-openctm-nightly)
### Python Interface for the Open-CTM File Format

Python-OpenCTM is a Python interface for the [OpenCTM](https://github.com/Danny02/OpenCTM) file format. A format that allows a geometry to be compressed to a fraction of comparable file formats (3DS, STL, COLLADA...).

## Installation

```shell
pip install python-openctm-nightly
```

## Usage

```python
import openctm

# read
mesh = openctm.import_mesh('foo.ctm')

print(mesh.vertices.shape)
# (124, 3)

# write
openctm.export_mesh(mesh, 'bar.ctm')
```


