You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+178-1Lines changed: 178 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,26 +9,196 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Added
11
11
12
+
* Added basic implementation of `compas.datastructures.Assembly`.
13
+
14
+
### Changed
15
+
16
+
* Updated `pr-checks` workflow for checking Changelog entry.
17
+
* Fixed return value of attributes of empty `compas_rhino.geometry.RhinoNurbsCurve`.
18
+
* Fixed error in parameter list of `compas_rhino.geometry.curves.new_nurbscurve`.
19
+
* Fixed error in parameter list of `compas_rhino.geometry.curves.new_nurbscurve_from_interpolation`.
20
+
* Fixed error in parameter list of `compas_rhino.geometry.curves.new_nurbscurve_from_step`.
21
+
22
+
### Removed
23
+
24
+
25
+
## [1.12.2] 2021-11-30
26
+
27
+
### Added
28
+
29
+
### Changed
30
+
31
+
* Moved import of `subprocess` to top of file `compas._os.py`.
32
+
33
+
### Removed
34
+
35
+
36
+
## [1.12.1] 2021-11-29
37
+
38
+
### Added
39
+
40
+
### Changed
41
+
42
+
* Fixed bug in `compas_rhino.conversions.RhinoPoint.from_geometry`.
43
+
44
+
### Removed
45
+
46
+
47
+
## [1.12.0] 2021-11-17
48
+
49
+
### Added
50
+
51
+
* Added `CircleArtist`, `LineArtist`, `PointArtist`, `PolygonArtist`, `PolylineArtist`, and `VectorArtist` to `compas_blender`.
52
+
* Added `draw_circles` and `draw_planes` to `compas_blender`.
53
+
* Added `compas_rhino.geometry.curves` plugins for `compas.geometry.curves` pluggables.
54
+
* Added `compas_rhino.geometry.RhinoNurbsCurve`.
55
+
* Added `to_compas_quadmesh` to `compas_rhino.conversions.RhinoSurface`.
56
+
57
+
### Changed
58
+
59
+
* Replaced implementation of `RGBColour` and `Float` with deprecation warning in `compas.utilities.descriptors`.
60
+
* Moved all Rhino geometry and objects wrappers to `compas_rhino.conversions`.
61
+
* Fixed bug in `compas_rhino.conversions.RhinoSurface.from_geometry`.
62
+
* Changed `compas_rhino.conversions.RhinoLine.from_geometry` to accept line curves.
63
+
* Fixed bug in `compas_rhino.geometry.RhinoNurbsCurve.closest_point`.
64
+
* Modify `to_compas_mesh` in `compas_rhino.conversions.RhinoSurface` to use brep loops.
65
+
66
+
### Removed
67
+
68
+
69
+
## [1.11.1] 2021-11-09
70
+
71
+
### Added
72
+
73
+
### Changed
74
+
75
+
* Changed `compas_rhino.uninstall` to also remove broken symlinks if no specific packages are provided for un-installation.
76
+
* Changed `compas_rhino.install` to also remove broken symlinks.
77
+
78
+
### Removed
79
+
80
+
81
+
## [1.11.0] 2021-11-08
82
+
83
+
### Added
84
+
85
+
* Added halfedge loops in `compas.datastructures.Halfedge.halfedge_loop`.
86
+
* Added halfedge strips in `compas.datastructures.Halfedge.halfedge_strip`.
87
+
* Added `compas.datastructures.mesh_split_strip` and `compas.datastructures.Mesh.split_strip`.
88
+
* Added boundingbox to `compas_rhino.conduits.BaseConduit`
89
+
90
+
### Changed
91
+
92
+
* Fixed bug in combination of `compas_rhino.artists.MeshArtist.draw_mesh` and `compas_rhino.utilities.drawing.draw_mesh`.
93
+
* Fixed bug in continuous loops in `compas.datastructures.Halfedge.edge_loop`.
94
+
* Fixed bug in continuous strips in `compas.datastructures.Halfedge.edge_strip`.
95
+
* Changed abstract method `compas.artists.MeshArtist.draw_mesh` to implemented method in `compas_plotters.artists.MeshArtist.draw_mesh`.
96
+
97
+
### Removed
98
+
99
+
100
+
## [1.10.0] 2021-11-04
101
+
102
+
### Added
103
+
104
+
* Added `compas.geometry.Curve` and `compas.geometry.NurbsCurve`.
105
+
* Added `compas.geometry.Surface` and `compas.geometry.NurbsSurface`.
106
+
* Added pluggables for `compas.geometry.NurbsCurve.__new__`, `compas.geometry.NurbsCurve.from_parameters`, `compas.geometry.NurbsCurve.from_points`, `compas.geometry.NurbsCurve.from_interpolation`, `compas.geometry.NurbsCurve.from_step`.
107
+
* Added pluggables for `compas.geometry.NurbsSurface.__new__`, `compas.geometry.NurbsSurface.from_parameters`, `compas.geometry.NurbsSurface.from_points`, `compas.geometry.NurbsSurface.from_fill`, `compas.geometry.NurbsSurface.from_step`.
108
+
* Added missing implementations for abstract clear methods of `compas_rhino.artists.volmeshartist`.
109
+
110
+
* Added `compas_rhino.geometry.RhinoBox`, `compas_rhino.geometry.RhinoCircle`, `compas_rhino.geometry.RhinoCone`, `compas_rhino.geometry.RhinoCurve`, `compas_rhino.geometry.RhinoCylinder`, `compas_rhino.geometry.RhinoEllipse`, `compas_rhino.geometry.RhinoLine`, `compas_rhino.geometry.RhinoMesh`, `compas_rhino.geometry.RhinoPlane`, `compas_rhino.geometry.RhinoPoint`, `compas_rhino.geometry.RhinoPolyline`, `compas_rhino.geometry.RhinoSphere`, `compas_rhino.geometry.RhinoSurface`, `compas_rhino.geometry.RhinoVector` as wrappers for working with Rhino geometry through geometry conversions or coercion of doc objects.
111
+
* Added `compas_rhino.conversions` from COMPAS geometry to Rhino geometry and vice versa, for primitives, shapes, curves, surfaces, meshes.
112
+
* Added `compas_rhino.coercion` from Rhino doc objects to Rhino geometry compatible with COMPAS geometry.
113
+
114
+
### Changed
115
+
116
+
* Fixed bug in directions of `compas.datastructures.Mesh.from_meshgrid`.
117
+
* Fixed bug in Rhino mesh face drawing.
118
+
* Fixed bug related to legacy uninstall on Rhino for Mac.
119
+
120
+
### Removed
121
+
122
+
123
+
## [1.9.3] 2021-11-02
124
+
125
+
### Added
126
+
127
+
### Changed
128
+
129
+
* Changed default path for Rhino 7 legacy install cleanup to Rhino7.app in `compas_rhino.__init__.py`.
130
+
* Changed z-coordinate of `compas.datastructures.Mesh.from_meshgrid` to `0.0` instead of `0`.
131
+
132
+
### Removed
133
+
134
+
135
+
## [1.9.2] 2021-11-02
136
+
137
+
### Added
138
+
139
+
* Added `draw_mesh` method to `compas_ghpython.artists.MeshArtist` to match all other mesh artists.
140
+
141
+
### Changed
142
+
143
+
* Changed new artist registration to check if subclass.
144
+
* Fixed `RobotModelArtist` for blender: missing abstract method impl and handle init order.
145
+
146
+
### Removed
147
+
148
+
149
+
## [1.9.1] 2021-10-22
150
+
151
+
### Added
152
+
153
+
* Added `Plane.offset`.
154
+
* Added `is_mesh_closed` property to `compas.datastructures.mesh_slice_plane`.
155
+
156
+
### Changed
157
+
158
+
* Fixed backward compatibility problem with artists by adding back `Artist.build` and `Artist.build_as`.
159
+
* Fixed backward compatibility problem with artists by adding `compas_rhino.artists.BaseArtist` alias for `compas_rhino.artists.RhinoArtist`.
160
+
161
+
### Removed
162
+
163
+
164
+
## [1.9.0] 2021-10-21
165
+
166
+
### Added
167
+
12
168
* Added `draw_vertexlabels`, `draw_edgelabels`, `draw_facelabels`, `draw_vertexnormals`, and `draw_facenormals` to `compas_blender.artists.MeshArtist`.
13
169
* Added optional `triangulated` flag to `to_vertices_and_faces` of all shapes.
14
170
* Added `compas.geometry.Geometry` base class.
15
171
* Added `__add__`, `__sub__`, `__and__` to `compas.geometry.Shape` for boolean operations using binary operators.
16
172
* Added `is_closed` to `compas.geometry.Polyhedron`.
0 commit comments