Releases: orbingol/NURBS-Python
Releases · orbingol/NURBS-Python
NURBS-Python v3.7.4
- Fixed a bug when
_reset_ctrlpts
function resets the bounding box
NURBS-Python v3.7.3
- Bug fix release
NURBS-Python v3.7.2
- Bug fix release
NURBS-Python v3.7.1
- Removed unnecessary evaluations while setting
sample_size
anddelta
properties.
NURBS-Python v3.7.0
- Added
delta_u
anddelta_v
properties to Surface classes. This change allows different sampling in u- and v-directions - Fixed some bugs related to
sample_size
property - Replaced
delta
withsample_size
in Multi classes.sample_size
property directly corresponds tonum
argument in numpy.linspace function.
These changes may cause a small API break in your existing code, especially if you are visualizing using the geomdl.visualization.VisMPL
component. Please see the examples repository and check any example for the updated usage scenarios.
NURBS-Python v3.6.7
- Added
sample_size
property.
sample_size
works very similar to numpy.linspace
. In numpy.linspace
, you define start and end positions with the number or samples to generate between them. This property automatically sets the delta
property, so after setting sample_size
, there is no need to play with delta
.
NURBS-Python v3.6.6
- Bug fixes and compatibility updates
- Added new tests
NURBS-Python v3.6.5
- Added Object File Format (OFF) export support to
exchange
module
NURBS-Python v3.6.4
- Code reorganization
- Bug fixes
NURBS-Python v3.6.3
- Updated NURBS module to have an extensible variable cache
- Minor bug fixes