Capsule.contains_points

Capsule.contains_points(points, tol=1e-06)[source]

Verify if a list of points is inside the capsule.

Parameters:
pointslist of compas.geometry.Point

The points.

tolfloat, optional

The tolerance for the test.

Returns:
list of bool

For each point, True if the point is inside the capsule. False otherwise.

See also

contains_point