@@ -139,7 +139,7 @@ def homogenize_and_flatten_frames(frames):
139139
140140 Parameters
141141 ----------
142- frames : sequence[[point, vector, vector] | :class:`compas.geometry.Frame` ]
142+ frames : sequence[[point, vector, vector]]
143143
144144 Returns
145145 -------
@@ -245,7 +245,7 @@ def transform_frames(frames, T):
245245
246246 Parameters
247247 ----------
248- frames : sequence[[point, vector, vector] | :class:`compas.geometry.Frame` ]
248+ frames : sequence[[point, vector, vector]]
249249 A list of frames to be transformed.
250250 T : list[list[float]] | :class:`compas.geometry.Transformation`
251251 The transformation to apply on the frames.
@@ -272,7 +272,7 @@ def world_to_local_coordinates(frame, xyz):
272272
273273 Parameters
274274 ----------
275- frame : [point, vector, vector] | :class:`compas.geometry.Frame`
275+ frame : [point, vector, vector]
276276 The local coordinate system.
277277 xyz : array-like[[float, float, float] | :class:`compas.geometry.Point`]
278278 The global coordinates of the points to convert.
@@ -302,7 +302,7 @@ def local_to_world_coordinates(frame, xyz):
302302
303303 Parameters
304304 ----------
305- frame : [point, vector, vector] | :class:`compas.geometry.Frame`
305+ frame : [point, vector, vector]
306306 The local coordinate system.
307307 xyz : array-like[[float, float, float] | :class:`compas.geometry.Point`]
308308 The global coordinates of the points to convert.
@@ -714,7 +714,7 @@ def mirror_point_plane(point, plane):
714714 ----------
715715 point : list[float]
716716 XYZ coordinates of mirror point.
717- plane : [point, vector] | :class:`compas.geometry.Plane`
717+ plane : [point, vector]
718718 Base point and normal defining the mirror plane.
719719
720720 Returns
@@ -734,7 +734,7 @@ def mirror_points_plane(points, plane):
734734 ----------
735735 points : sequence[[float, float, float] | :class:`compas.geometry.Point`]
736736 List of points to mirror.
737- plane : [point, vector] | :class:`compas.geometry.Plane`
737+ plane : [point, vector]
738738 Base point and normal defining the mirror plane.
739739
740740 Returns
@@ -760,7 +760,7 @@ def project_point_plane(point, plane):
760760 ----------
761761 point : [float, float, float] | :class:`compas.geometry.Point`
762762 XYZ coordinates of the point.
763- plane : [point, vector] | :class:`compas.geometry.Plane`
763+ plane : [point, vector]
764764 Base point and normal vector defining the projection plane.
765765
766766 Returns
@@ -802,7 +802,7 @@ def project_points_plane(points, plane):
802802 ----------
803803 points : sequence[[float, float, float] | :class:`compas.geometry.Point`]
804804 List of points.
805- plane : [point, vector] | :class:`compas.geometry.Plane`
805+ plane : [point, vector]
806806 Base point and normal vector defining the projection plane.
807807
808808 Returns
@@ -951,7 +951,7 @@ def reflect_line_plane(line, plane, tol=None):
951951 ----------
952952 line : [point, point] | :class:`compas.geometry.Line`
953953 Two points defining the line.
954- plane : [point, vector] | :class:`compas.geometry.Plane`
954+ plane : [point, vector]
955955 Base point and normal vector of the plane.
956956 tol : float, optional
957957 A tolerance for finding the intersection between the line and the plane.
@@ -1066,11 +1066,11 @@ def orient_points(points, reference_plane, target_plane):
10661066
10671067 Parameters
10681068 ----------
1069- points : sequence[[float, float, float] | :class:`compas.geometry.Point`]s
1069+ points : sequence[[float, float, float] | :class:`compas.geometry.Point`]
10701070 XYZ coordinates of the points.
1071- reference_plane : [point, vector] | :class:`compas.geometry.Plane`
1071+ reference_plane : [point, vector]
10721072 Base point and normal defining a reference plane.
1073- target_plane : [point, vector] | :class:`compas.geometry.Plane`
1073+ target_plane : [point, vector]
10741074 Base point and normal defining a target plane.
10751075
10761076 Returns
0 commit comments