We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c0cd7b + 48f64d5 commit 209201bCopy full SHA for 209201b
CHANGELOG.md
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
12
### Changed
13
14
+* Fixed argument order at `compas.geometry.cone.circle`.
15
+
16
### Removed
17
18
src/compas/geometry/shapes/cone.py
@@ -154,7 +154,7 @@ def axis(self):
154
155
@property
156
def circle(self):
157
- return Circle(self.frame, self.radius)
+ return Circle(self.radius, self.frame)
158
159
160
def diameter(self):
0 commit comments