diff --git a/src/compas_rhino/conversions/geometry.py b/src/compas_rhino/conversions/geometry.py index 584790e9bf5f..7279fc494c13 100644 --- a/src/compas_rhino/conversions/geometry.py +++ b/src/compas_rhino/conversions/geometry.py @@ -57,7 +57,7 @@ def plane_to_rhino(plane): :rhino:`Rhino.Geometry.Plane` """ - return Rhino.Geometry.Plane(point_to_rhino(plane[0]), vector_to_rhino(plane[1])) + return Rhino.Geometry.Plane(point_to_rhino(plane[0]), vector_to_rhino(plane[1]), vector_to_rhino(plane[2])) def frame_to_rhino_plane(frame):