Metadata-Version: 2.0
Name: vertexarray
Version: 0.1.0
Summary: Simple vertex array that avoids repeating vertices
Home-page: https://github.com/kcsaff/vertexarray
Author: K.C.Saff
Author-email: kc@saff.net
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Other Audience
Classifier: Programming Language :: Python :: 3

VertexArray
===========

A simple library for efficiently storing & manipulating vertex arrays in python.

Requirements
------------

1. Python 3.+

This library is pure python 3 and has no other requirements.

Installation
------------

`python3 setup.py install`

Usage
-----

```python

>>> from vertexarray import VertexArray
>>> va = VertexArray()
>>> face = va.extend([(1, 0, 0), (0, 1, 0), (0, 0, 1)])

```

0.1.0 (2016-04-06)
------------------

- Initial development version, copied & renamed from maze-builder.

