-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Onur R. Bingol
committed
Jan 31, 2018
1 parent
3b00626
commit d65a4a0
Showing
1 changed file
with
1 addition
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
""" NURBS-Python | ||
This project aims to implement Non-Uniform Rational B-Spline (NURBS) curve and surface computation algorithms in native | ||
Python with minimum possible dependencies. The library is fully object-oriented and does not depend on any external | ||
C/C++ libraries. | ||
""" NURBS & B-Spline 2D/3D curve and surface evaluation library in pure Python | ||
.. moduleauthor:: Onur Rauf Bingol <[email protected]> | ||
""" | ||
|
||
__doc__ = "NURBS 2D/3D curve and surface evaluation library in native Python" | ||
__author__ = "Onur Rauf Bingol" | ||
__version__ = "3.0.20" | ||
__license__ = "MIT" |