tek5030 / lab-camera-pose-py

Pose and camera geometry
BSD 3-Clause "New" or "Revised" License
0 stars 1 forks source link

2024 #5

Closed solosuper closed 6 months ago

solosuper commented 6 months ago
rectangle = pv.Rectangle([point_bottom_left, point_bottom_right, point_top_left, point_top_right])
  (...)
raise TypeError('Points must be given as length 3 np.ndarray or list')
def Rectangle(points=None):
    """Create a rectangle defined by 3 points.

    The 3 points must define an orthogonal set of vectors.

    Parameters
    ----------
    points : array_like[float], optional
        Points of the rectangle. Defaults to a unit square in xy-plane.

# (...)