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
+55-7Lines changed: 55 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,13 +9,48 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Added
11
11
12
+
* Added `compas_rhino8` as starting point for Rhino8 support.
13
+
* Added tutorial for `compas.datastructures.Tree`.
14
+
15
+
### Changed
16
+
17
+
* Changed the `__str__` of `compas.geometry.Point` and `compas.geometry.Vector` to use a limited number of decimals (determined by `Tolerance.PRECISION`). Note: `__repr__` will instead maintain full precision.
18
+
19
+
### Removed
20
+
21
+
* Removed `compas_rhino.forms`. Forms will be moved to `compas_ui`.
22
+
23
+
24
+
## [2.0.0-beta.1] 2023-12-20
25
+
26
+
### Added
27
+
12
28
* Added `compas.geometry.Box.to_brep()`.
13
29
* Added `compas.geometry.Cone.to_brep()`.
14
30
* Added `compas.geometry.Cylinder.to_brep()`.
15
31
* Added `compas.geometry.Sphere.to_brep()`.
16
32
* Added `compas.geometry.Torus.to_brep()`.
17
33
* Added `compas.brep.Brep.from_iges()`.
18
34
* Added `compas.brep.Brep.to_iges()`.
35
+
* Added `compas.tolerance`.
36
+
* Added `compas.tolerance.Tolerance`.
37
+
* Added `compas.tolerance.Tolerance.ABSOLUTE` and `compas.tolerance.Tolerance.absolute`.
38
+
* Added `compas.tolerance.Tolerance.RELATIVE` and `compas.tolerance.Tolerance.relative`.
39
+
* Added `compas.tolerance.Tolerance.ANGULAR` and `compas.tolerance.Tolerance.angular`.
40
+
* Added `compas.tolerance.Tolerance.APPROXIMATION` and `compas.tolerance.Tolerance.approximation`.
41
+
* Added `compas.tolerance.Tolerance.PRECISION` and `compas.tolerance.Tolerance.precision`.
42
+
* Added `compas.tolerance.Tolerance.LINEARDEFLECTION` and `compas.tolerance.Tolerance.lineardeflection`.
@@ -80,18 +121,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
80
121
* Moved `compas.brep` to `compas.geometry.brep`.
81
122
* Updated `compas-actions.docs` workflow to `v3`.
82
123
*`Artists` classes are renamed to `SceneObject` classes and now under `compas.scene`, `compas_rhino.scene`, `compas_ghpython.scene`, `compas_blender.scene`.
83
-
* Context related functions like `register`, `build`, `redraw` and `clear` are moved to `compas.scene.context` from `compas.scene.SceneObject`.
124
+
* Context related functions like `register`, `build`, `redraw` and `clear` are moved to `compas.scene.context` from `compas.scene.SceneObject`.
84
125
* Changed plugin selection to fall back to a default implementation if possible.
85
126
* Fixed `AttributeError``_edges` in `compas_rhino.geometry.RhinoBrepLoop.edges`.
* Naming convention for `ColorDictAttributes` in `compas.scene.MeshObject`, `compas.scene.NetworkObject` and `compas.scene.VolmeshObject` is changed e.g. from `vertex_color` to `vertexcolor`.
129
+
* The building of correct type of `SceneObject` is moved backed to `__new__` of `SceneObject` itself.
130
+
* Changed `compas_blender.install` to use symlinks.
131
+
* Moved `URDF` parsing from `compas.files` to the `compas_robots` extension (`compas_robots.files.URDF`).
132
+
* Changed signature of `compas.geometry.Brep.slice()`
0 commit comments