/usr/lib/python3/dist-packages/admesh-0.98.1.egg-info/PKG-INFO is in python3-admesh 0.98.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | Metadata-Version: 1.1
Name: admesh
Version: 0.98.1
Summary: Python bindings for ADMesh, STL maipulation library
Home-page: https://github.com/admesh/python-admesh
Author: Miro HronĨok
Author-email: miro@hroncok.cz
License: GPLv2+
Description: ADMesh bindings for Python
==========================
.. image:: https://badge.fury.io/py/admesh.svg
:target: http://badge.fury.io/py/admesh
.. image:: https://travis-ci.org/admesh/python-admesh.png?branch=master
:target: https://travis-ci.org/admesh/python-admesh
.. image:: https://pypip.in/d/admesh/badge.png
:target: https://pypi.python.org/pypi/admesh
This module provides bindings for the `ADMesh <https://github.com/admesh/admesh>`_ library. It lets you manipulate 3D models in binary or ASCII STL format and partially repair them if necessary.
Installation
------------
First, you'll need to install the `ADMesh <https://github.com/admesh/admesh>`_ library. This release is designed for ADMesh 0.98. Follow the instructions there. Then you can install this as usual with **one** of the following:
.. code:: sh
./setup.py install
python3 setup.py install # for Python 3
pip install admesh # install directly from PyPI
In case your ADMesh library is located in non-standard location, you'll have to tell the compiler and linker where to look:
.. code:: sh
LDFLAGS='-L/path/to/library' CFLAGS='-L/path/to/header' ./setup.py install
Usage
-----
Use the ``Stl`` class provided.
.. code:: python
from admesh import Stl
stl = Stl('file.stl')
help(stl) # observe the available methods
Note that all ADMesh functions start with ``stl_`` prefix and the methods do not. Also note that not all ADMesh functions are provided, because some would require more complicated approach and are not considered worthy. In case you are missing some functions, create a `new issue <https://github.com/admesh/python-admesh/issues/new>`_.
Keywords: STL,mesh,3D
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
|