Skip to content

Commit e4c8066

Browse files
committed
rhino plugin for nurbs surfaces
1 parent b49ad2c commit e4c8066

File tree

8 files changed

+796
-88
lines changed

8 files changed

+796
-88
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
* Added `compas_plotters.artists.NetworkArtist.draw_nodelabels`.
1313
* Added `compas_plotters.artists.NetworkArtist.draw_edgelabels`.
1414
* Added `compas_plotters.Plotter.fontsize`.
15+
* Added `compas_rhino.geometry.RhinoNurbsSurface`.
16+
* Added `compas_rhino.geometry.surfaces.new_nurbssurface` plugin.
17+
* Added `compas_rhino.geometry.surfaces.new_nurbssurface_from_parameters` plugin.
18+
* Added `compas_rhino.geometry.surfaces.new_nurbssurface_from_points` plugin.
19+
* Added `compas_rhino.geometry.surfaces.new_nurbssurface_from_fill` plugin.
20+
* Added `compas_rhino.geometry.surfaces.new_nurbssurface_from_step` plugin.
1521

1622
### Changed
1723

src/compas/geometry/curves/nurbs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def __eq__(self, other):
104104
def __str__(self):
105105
lines = [
106106
'NurbsCurve',
107-
'------------',
107+
'----------',
108108
'Points: {}'.format(self.points),
109109
'Weights: {}'.format(self.weights),
110110
'Knots: {}'.format(self.knots),

0 commit comments

Comments
 (0)