is_perpendicular#

static GeometryOperators.is_perpendicular(a, b, tol=1e-06)[source]#

Check if two vectors are perpendicular.

Parameters:
aList

List of [x, y, z] coordinates for the first vector.

bList

List of [x, y, z] coordinates for the second vector.

tolfloat

Linear tolerance. The default value is 1e-6.

Returns:
bool

True if vectors are perpendicular, False otherwise.