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.
1 parent 4ba1430 commit 2ed3f18Copy full SHA for 2ed3f18
src/compas/geometry/primitives/frame.py
@@ -65,7 +65,7 @@ class Frame(Primitive):
65
>>> from compas.geometry import Point
66
>>> from compas.geometry import Vector
67
>>> f = Frame([0, 0, 0], [1, 0, 0], [0, 1, 0])
68
- >>> f = Frame(Point(0, 0, 0), Vector(1, 0, 0), Point(0, 1, 0))
+ >>> f = Frame(Point(0, 0, 0), Vector(1, 0, 0), Vector(0, 1, 0))
69
"""
70
71
def __init__(self, point, xaxis, yaxis):
0 commit comments