forked from orbingol/NURBS-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
46 lines (38 loc) · 995 Bytes
/
__init__.py
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
""" Object-oriented B-Spline and NURBS evaluation library in pure Python
.. moduleauthor:: Onur Rauf Bingol <orbingol@gmail.com>
"""
# Library version
__version__ = "5.3.1"
# Author and license
__author__ = "Onur Rauf Bingol"
__license__ = "MIT"
# Optional variables
__description__ = 'Object-oriented B-Spline and NURBS evaluation library'
__keywords__ = 'NURBS B-Spline curve surface CAD modeling visualization surface-generator'
# Support for "from geomdl import *"
# @see: https://stackoverflow.com/a/41895257
# @see: https://stackoverflow.com/a/35710527
__all__ = [
'BSpline',
'compatibility',
'construct',
'convert',
'CPGen',
'elements',
'evaluators',
'exchange',
'exchange_vtk',
'fitting',
'helpers',
'linalg',
'multi',
'NURBS',
'operations',
'ray',
'tessellate',
'utilities',
'voxelize'
]
def geomdl_version():
""" Returns geomdl full version as a tuple """
return tuple(__version__.split('.'))