Releases: orbingol/NURBS-Python
Releases · orbingol/NURBS-Python
NURBS-Python v3.0.17
- Fixed a problem with surface setters (no API break)
- Visualization module updates
- Added more tests
NURBS-Python v3.0.15
- Added
utilities.vector_generatefunction - Fixed some compatibility issues (related to future releases)
As usual, you can install the latest version via pip install NURBS-Python
NURBS-Python v3.0.14
- Bug fixes in
make_triangle - Add
VisSurfaceclass to visualization module
NURBS-Python v3.0.13
- Added
make_trianglefunction - Updated visualization module
NURBS-Python v3.0.12
- Minor updates
NURBS-Python v3.0.10
- Bug fix release
NURBS-Python v3.0.9
- PyPI description update (requires version bump)
- Minor updates and bug fixes
NURBS-Python v3.0.8
- Reorganize and update Matplotlib visualization component,
VisMPL
Please note that updates to VisMPL component might cause a small API break on the visualization module, and therefore it is marked as experimental from now on. Updates to visualization component do not affect NURBS evaluation components.
Currently, VisMPL has the following classes:
VisCurve2Dfor 2D curvesVisCurve3Dfor 3D curvesVisSurfWireframefor surfaces (usesplot_wireframefunction)VisSurfTrianglefor surfaces (usesplot_trisurffunction)VisSurfScatterfor surfaces (uses 3Dscatterfunction)
As usual, the easiest way to install is using pip: pip install NURBS-Python.
NURBS-Python v3.0.7
- Added checks to knot vector assignments
- Added 'tangents', 'normals' and 'binormals' methods to Curve classes
- Added 'tangents' and 'normals' methods to Surface classes
- A new example added to documentation
NURBS-Python v3.0.6
Changed/updated functionality
normalmethod of theSurfacetype classes has been updated. It now returns a list containing 2 elements. First one is the starting point (or origin) of the normal vector and the second one is the normal vector itself.
New functionality
- Added
normalandbinormalmethods to theCurveandCurve2Dtype classes
Documentation updates
- Minor fixes to the inline documentation
- Visualization figure updates
You can install the latest version via pip install NURBS-Python