예제 #1
0
파일: test_utils.py 프로젝트: e-koch/BaSiCs
def test_in_circle():

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

    assert in_circle(pt, pars)
예제 #2
0
def test_in_circle():

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

    assert in_circle(pt, pars)
예제 #3
0
파일: test_utils.py 프로젝트: e-koch/BaSiCs
def test_not_in_circle():

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

    assert not in_circle(pt, pars)
예제 #4
0
def test_not_in_circle():

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

    assert not in_circle(pt, pars)