is_perpendicular# static GeometryOperators.is_perpendicular(a, b, tol=1e-06)[source]# Check if two vectors are perpendicular. Parameters: aListList of [x, y, z] coordinates for the first vector. bListList of [x, y, z] coordinates for the second vector. tolfloatLinear tolerance. The default value is 1e-6. Returns: boolTrue if vectors are perpendicular, False otherwise.