def check_vector(obj): return check(obj, Vector3d)
def test_check_failing(): check(np.asarray([1, 1, 1, 1]), Object3d)
def check_quaternion(obj): return check(obj, Quaternion)