Beispiel #1
0
def test_get_set_minimal_centered_bounding_sphere_radius(poly):
    _test_get_set_minimal_bounding_sphere_radius(poly, True)
Beispiel #2
0
def test_get_set_minimal_bounding_sphere_radius(poly):
    _test_get_set_minimal_bounding_sphere_radius(poly)
Beispiel #3
0
def test_get_set_minimal_centered_bounding_circle_radius(r, center):
    _test_get_set_minimal_bounding_sphere_radius(Circle(r, center), True)
Beispiel #4
0
def test_get_set_minimal_centered_bounding_ellipse_radius(a, b, center):
    _test_get_set_minimal_bounding_sphere_radius(Ellipse(a, b, center), True)
Beispiel #5
0
def test_get_set_minimal_bounding_circle_radius(r, center):
    _test_get_set_minimal_bounding_sphere_radius(Sphere(r, center))
Beispiel #6
0
def test_get_set_minimal_centered_bounding_circle_radius(a, b, c, center):
    _test_get_set_minimal_bounding_sphere_radius(Ellipsoid(a, b, c, center),
                                                 True)