Metadata-Version: 2.1
Name: geomdl
Version: 4.0b2
Summary: NURBS curve and surface evaluation library in pure python
Home-page: https://github.com/orbingol/NURBS-Python
Author: Onur Rauf Bingol
Author-email: contact@onurbingol.net
License: MIT
Project-URL: Documentation, http://nurbs-python.readthedocs.io/
Project-URL: Source, https://github.com/orbingol/NURBS-Python
Project-URL: Tracker, https://github.com/orbingol/NURBS-Python/issues
Description: NURBS-Python (geomdl)
        ^^^^^^^^^^^^^^^^^^^^^
        
        |DOI|_ |RTD|_ |TRAVISCI|_ |APPVEYOR|_ |WAFFLEIO|_
        
        Description
        ===========
        
        NURBS-Python (geomdl) provides fully object-oriented Non-Uniform Rational B-Spline (NURBS) surface and curve data
        structures and extensible advanced computation algorithms in pure python. It allows users to directly visualize the
        computed curves and surfaces using various visualization libraries. Additionally, it comes with a surface generator.
        
        Features
        ========
        
        NURBS-Python consists of the following modules and components:
        
        * Core library
        * Exchange module
        * Visualization component
        * Shapes component
        
        Core Library
        ------------
        
        The core library is responsible for data storage and evaluation. It is capable of handling B-Spline (NUBS) and NURBS
        curves and surfaces (single via ``geomdl.BSpline`` and ``geomdl.NURBS``, multiple via ``geomdl.Multi`` modules).
        It provides an abstraction layer for easy extensibility (``geomdl.Abstract``), allows a variety of customizations and
        helper functionality, such as surface (``geomdl.CPGen`` module) and uniform knot vector
        (``geomdl.utilities.generate_knot_vector``) generators.
        
        Exchange Module
        ---------------
        
        ``geomdl.exchange`` module can export control points and evaluated points of the ``Curve`` and ``Surface`` objects
        in common formats such as CSV, VTK, OBJ, OFF and STL.
        
        Visualization Component
        -----------------------
        
        ``geomdl.visualization`` component contains customizable classes for plotting curves and surfaces directly.
        
        Shapes Component
        ----------------
        
        ``geomdl.shapes`` component provides an easy way to generate the most common curves and surfaces, such as circles and
        cylinders.
        
        Further Reading
        ===============
        
        * Github repository: https://github.com/orbingol/NURBS-Python
        * Examples: https://github.com/orbingol/NURBS-Python_Examples
        * Documentation: http://nurbs-python.readthedocs.io/
        
        License
        =======
        
        NURBS-Python is licensed under the MIT License.
        
        
        .. |DOI| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.815010.svg
        .. _DOI: https://doi.org/10.5281/zenodo.815010
        
        .. |RTD| image:: https://readthedocs.org/projects/nurbs-python/badge/?version=stable
        .. _RTD: http://nurbs-python.readthedocs.io/en/stable/?badge=stable
        
        .. |WAFFLEIO| image:: https://badge.waffle.io/orbingol/NURBS-Python.svg?columns=all
        .. _WAFFLEIO: https://waffle.io/orbingol/NURBS-Python
        
        .. |TRAVISCI| image:: https://travis-ci.org/orbingol/NURBS-Python.svg?branch=master
        .. _TRAVISCI: https://travis-ci.org/orbingol/NURBS-Python
        
        .. |APPVEYOR| image:: https://ci.appveyor.com/api/projects/status/github/orbingol/nurbs-python?branch=master&svg=true
        .. _APPVEYOR: https://ci.appveyor.com/project/orbingol/nurbs-python
        
Keywords: NURBS B-Spline curve surface CAD modeling visualization
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Provides-Extra: tests
Provides-Extra: visualization
