コード例 #1
0
ファイル: test_acquisition.py プロジェクト: gbzan/xdesign
def test_beampoly_nonintersecting_bottom():
    tri = Triangle(Point([0, 1]), Point([1, -1]), Point([-1, -1]))
    beam = Probe(Point([-2, -2]), Point([2, -2]), 2)
    assert_allclose(beampoly(beam, tri), 0., rtol=1e-6)
コード例 #2
0
ファイル: test_acquisition.py プロジェクト: gbzan/xdesign
def test_beampoly_intersecting_partially_from_bottom():
    tri = Square(Point([0.5, 0.5]), side_length=1.0)
    beam = Probe(Point([-2, 0]), Point([2, 0]), 1)
    assert_allclose(beampoly(beam, tri), 1 / 2, rtol=1e-6)
コード例 #3
0
ファイル: test_acquisition.py プロジェクト: gbzan/xdesign
def test_beampoly_intersecting_fully():
    tri = Square(Point([0, 0]), side_length=2.0)
    beam = Probe(Point([-2, 0]), Point([2, 0]), 3)
    assert_allclose(beampoly(beam, tri), 4, rtol=1e-6)
コード例 #4
0
ファイル: test_acquisition.py プロジェクト: gbzan/xdesign
def test_beampoly_vertical_intersection():
    tri = Rectangle(Point([0, 0.5]), side_lengths=[10, 1])
    beam = Probe(Point([0, -1]), Point([0, 1]), 1)
    assert_allclose(beampoly(beam, tri), 1, rtol=1e-6)
コード例 #5
0
def test_beampoly_intersecting_fully():
    tri = Rectangle(Point([-1, -1]), Point([1, -1]), Point([1, 1]),
                    Point([-1, 1]))
    beam = Beam(Point([-2, 0]), Point([2, 0]), 3)
    assert_allclose(beampoly(beam, tri), 4, rtol=1e-6)
コード例 #6
0
def test_beampoly_vertical_intersection():
    tri = Rectangle(Point([-5, 0]), Point([5, 0]), Point([5, 1]),
                    Point([-5, 1]))
    beam = Beam(Point([0, -1]), Point([0, 1]), 1)
    assert_allclose(beampoly(beam, tri), 1, rtol=1e-6)
コード例 #7
0
def test_beampoly_intersecting_partially_from_bottom():
    tri = Rectangle(Point([0, 0]), Point([1, 0]), Point([1, 1]), Point([0, 1]))
    beam = Beam(Point([-2, 0]), Point([2, 0]), 1)
    assert_allclose(beampoly(beam, tri), 1 / 2, rtol=1e-6)
コード例 #8
0
def test_beampoly_intersecting_partially_from_bottom():
    tri = Square(Point([0.5, 0.5]), side_length=1.0)
    beam = Probe(Point([-2, 0]), Point([2, 0]), 1)
    assert_allclose(beampoly(beam, tri), 1/2, rtol=1e-6)
コード例 #9
0
def test_beampoly_nonintersecting_bottom():
    tri = Triangle(Point([0, 1]), Point([1, -1]), Point([-1, -1]))
    beam = Probe(Point([-2, -2]), Point([2, -2]), 2)
    assert_allclose(beampoly(beam, tri), 0., rtol=1e-6)
コード例 #10
0
def test_beampoly_vertical_intersection():
    tri = Rectangle(Point([0, 0.5]), side_lengths=[10, 1])
    beam = Probe(Point([0, -1]), Point([0, 1]), 1)
    assert_allclose(beampoly(beam, tri), 1, rtol=1e-6)
コード例 #11
0
def test_beampoly_intersecting_fully():
    tri = Square(Point([0, 0]), side_length=2.0)
    beam = Probe(Point([-2, 0]), Point([2, 0]), 3)
    assert_allclose(beampoly(beam, tri), 4, rtol=1e-6)