Ejemplo n.º 1
0
def test_in_circle():

    pt = (5, 5)
    pars = (0, 0, 10)

    assert in_circle(pt, pars)
Ejemplo n.º 2
0
def test_in_circle():

    pt = (5, 5)
    pars = (0, 0, 10)

    assert in_circle(pt, pars)
Ejemplo n.º 3
0
def test_not_in_circle():

    pt = (5, 5)
    pars = (0, 0, 4)

    assert not in_circle(pt, pars)
Ejemplo n.º 4
0
def test_not_in_circle():

    pt = (5, 5)
    pars = (0, 0, 4)

    assert not in_circle(pt, pars)