Skip to content

Releases: orbingol/NURBS-Python

NURBS-Python v3.7.4

26 Apr 17:43
Compare
Choose a tag to compare
  • Fixed a bug when _reset_ctrlpts function resets the bounding box

NURBS-Python v3.7.3

25 Apr 15:21
Compare
Choose a tag to compare
  • Bug fix release

NURBS-Python v3.7.2

20 Apr 20:20
Compare
Choose a tag to compare
  • Bug fix release

NURBS-Python v3.7.1

19 Apr 19:46
Compare
Choose a tag to compare
  • Removed unnecessary evaluations while setting sample_size and delta properties.

NURBS-Python v3.7.0

19 Apr 06:38
Compare
Choose a tag to compare
  • Added delta_u and delta_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 with sample_size in Multi classes. sample_size property directly corresponds to num 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

07 Apr 03:02
Compare
Choose a tag to compare
  • 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

04 Apr 07:54
Compare
Choose a tag to compare
  • Bug fixes and compatibility updates
  • Added new tests

NURBS-Python v3.6.5

29 Mar 03:33
Compare
Choose a tag to compare
  • Added Object File Format (OFF) export support to exchange module

NURBS-Python v3.6.4

28 Mar 01:10
Compare
Choose a tag to compare
  • Code reorganization
  • Bug fixes

NURBS-Python v3.6.3

18 Mar 23:57
Compare
Choose a tag to compare
  • Updated NURBS module to have an extensible variable cache
  • Minor bug fixes