Exemple #1
0
 def test_global_index(self):
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     self.assertEqual(3, trtin.global_index(0, 0))
     self.assertEqual(0, trtin.global_index(0, 1))
     self.assertEqual(1, trtin.global_index(0, 2))
     self.assertEqual(-1, trtin.global_index(3, 2))
Exemple #2
0
    def test_set_tris_numpy(self):
        """Test setting the triangles of a tin using numpy arrays."""
        trtin = xt.Tin(self.pts)
        tris = self.tris_np
        trtin.triangles = tris

        np.testing.assert_array_equal(tris, trtin.triangles)
Exemple #3
0
 def test_local_index(self):
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     self.assertEqual(1, trtin.local_index(0, 0))
     self.assertEqual(2, trtin.local_index(0, 1))
     self.assertEqual(0, trtin.local_index(0, 3))
     self.assertEqual(-1, trtin.local_index(0, 4))
Exemple #4
0
 def test_set_tris_adj_numpy(self):
     """Test setting the triangles adjacent to points of a tin using numpy arrays."""
     trtin = xt.Tin(self.pts)
     tris_adj = self.tris_adj_np
     trtin.triangles_adjacent_to_points = tris_adj
     np.testing.assert_array_equal(self.tris_adj,
                                   trtin.triangles_adjacent_to_points)
Exemple #5
0
 def test_get_extents(self):
     """Test getting the extents of a tin."""
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     mn, mx = trtin.extents
     self.assertEqual((0, 0, 0), mn)
     self.assertEqual((20, 10, 0), mx)
Exemple #6
0
 def test_build_tris_adj_to_pts(self):
     """Test building triangles adjacent to points."""
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     trtin.build_triangles_adjacent_to_points()
     self.assertEqual(((0, ), (0, 1, 2), (1, ), (0, 2), (1, 2)),
                      trtin.triangles_adjacent_to_points)
Exemple #7
0
 def test_triangle_area(self):
     """Test getting the area of a triangle."""
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     self.assertAlmostEqual(50.00000, trtin.triangle_area(0), places=4)
     self.assertAlmostEqual(50.00000, trtin.triangle_area(1), places=4)
     self.assertAlmostEqual(50.00000, trtin.triangle_area(2), places=4)
Exemple #8
0
 def test_delete_points(self):
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     to_delete = (2, 4)
     trtin.delete_points(to_delete)
     self.assertEqual(3, trtin.number_of_points)
     self.assertEqual(1, trtin.number_of_triangles)
Exemple #9
0
 def test_common_edge_index(self):
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     self.assertEqual(2, trtin.common_edge_index(0, 2))
     self.assertEqual(2, trtin.common_edge_index(2, 0))
     self.assertEqual(2, trtin.common_edge_index(1, 2))
     self.assertEqual(0, trtin.common_edge_index(2, 1))
     self.assertEqual(-1, trtin.common_edge_index(0, 1))
Exemple #10
0
 def test_previous_boundary_point(self):
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     self.assertEqual(1, trtin.previous_boundary_point(0))
     self.assertEqual(2, trtin.previous_boundary_point(1))
     self.assertEqual(4, trtin.previous_boundary_point(2))
     self.assertEqual(3, trtin.previous_boundary_point(4))
     self.assertEqual(0, trtin.previous_boundary_point(3))
Exemple #11
0
 def test_delete_triangles(self):
     # TODO: I don't think this is right.
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     to_delete = (1, 0)
     trtin.delete_triangles(to_delete)
     self.assertEqual(5, trtin.number_of_points)
     self.assertEqual(1, trtin.number_of_triangles)
Exemple #12
0
 def test_common_edge_index(self):
     """Test getting the common edge between two adjacent triangles."""
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     self.assertEqual(2, trtin.common_edge_index(0, 2))
     self.assertEqual(2, trtin.common_edge_index(2, 0))
     self.assertEqual(2, trtin.common_edge_index(1, 2))
     self.assertEqual(0, trtin.common_edge_index(2, 1))
     self.assertEqual(-1, trtin.common_edge_index(0, 1))
Exemple #13
0
 def test_triangle_adjacent_to_edge(self):
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     tri = trtin.triangle_adjacent_to_edge(1, 3)
     self.assertEqual(2, tri)
     tri = trtin.triangle_adjacent_to_edge(3, 1)
     self.assertEqual(0, tri)
     tri = trtin.triangle_adjacent_to_edge(1, 0)
     self.assertEqual(0, tri)
Exemple #14
0
 def test_previous_boundary_point(self):
     """Test getting the boundary point previous to another boundary point."""
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     self.assertEqual(1, trtin.previous_boundary_point(0))
     self.assertEqual(2, trtin.previous_boundary_point(1))
     self.assertEqual(4, trtin.previous_boundary_point(2))
     self.assertEqual(3, trtin.previous_boundary_point(4))
     self.assertEqual(0, trtin.previous_boundary_point(3))
Exemple #15
0
 def setUp(self):
     """Set up for each test case."""
     self.pts = ((0, 0, 0), (10, 0, 0), (20, 0, 0), (5, 10, 0), (15, 10, 0))
     self.pts_np = np.array([(0, 0, 0), (10, 0, 0), (20, 0, 0), (5, 10, 0),
                             (15, 10, 0)])
     self.tris = (3, 0, 1, 1, 2, 4, 1, 4, 3)
     self.tris_np = np.array([3, 0, 1, 1, 2, 4, 1, 4, 3])
     self.tris_adj = ((0, ), (0, 1, 2), (1, ), (0, 2), (1, 2))
     self.tris_adj_np = np.array([[0], [0, 1, 2], [1], [0, 2], [1, 2]])
     self.Tin = xt.Tin(self.pts, self.tris)
Exemple #16
0
 def test_clear(self):
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     np.testing.assert_array_equal(self.pts_np, trtin.points)
     np.testing.assert_array_equal(self.tris_np, trtin.triangles)
     self.assertEqual(self.tris_adj, trtin.triangles_adjacent_to_points)
     trtin.clear()
     self.assertEqual(0, len(trtin.points))
     self.assertEqual(0, len(trtin.triangles))
     self.assertEqual((), trtin.triangles_adjacent_to_points)
Exemple #17
0
 def test_triangle_adjacent_to_edge(self):
     """Test getting the triangle adjacent to an edge."""
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     tri = trtin.triangle_adjacent_to_edge(1, 3)
     self.assertEqual(2, tri)
     tri = trtin.triangle_adjacent_to_edge(3, 1)
     self.assertEqual(0, tri)
     tri = trtin.triangle_adjacent_to_edge(1, 0)
     self.assertEqual(0, tri)
Exemple #18
0
    def test_set_geometry_numpy(self):
        trtin = xt.Tin(self.pts)
        pts = self.pts_np
        tris = self.tris_np
        tris_adj = self.tris_adj_np
        trtin.set_geometry(pts, tris, tris_adj)

        np.testing.assert_array_equal(pts, trtin.points)
        np.testing.assert_array_equal(tris, trtin.triangles)
        np.testing.assert_array_equal(self.tris_adj,
                                      trtin.triangles_adjacent_to_points)
Exemple #19
0
    def test_set_geometry_numpy(self):
        """Test setting the geometry of a tin using numpy arrays."""
        trtin = xt.Tin(self.pts)
        pts = self.pts_np
        tris = self.tris_np
        tris_adj = self.tris_adj_np
        trtin.set_geometry(pts, tris, tris_adj)

        np.testing.assert_array_equal(pts, trtin.points)
        np.testing.assert_array_equal(tris, trtin.triangles)
        np.testing.assert_array_equal(self.tris_adj,
                                      trtin.triangles_adjacent_to_points)
Exemple #20
0
 def test_adjacent_triangle(self):
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     self.assertEqual(-1, trtin.adjacent_triangle(0, 0))
     self.assertEqual(-1, trtin.adjacent_triangle(0, 1))
     self.assertEqual(2, trtin.adjacent_triangle(0, 2))
     self.assertEqual(-1, trtin.adjacent_triangle(1, 0))
     self.assertEqual(-1, trtin.adjacent_triangle(1, 1))
     self.assertEqual(2, trtin.adjacent_triangle(1, 2))
     self.assertEqual(1, trtin.adjacent_triangle(2, 0))
     self.assertEqual(-1, trtin.adjacent_triangle(2, 1))
     self.assertEqual(0, trtin.adjacent_triangle(2, 2))
Exemple #21
0
 def test_adjacent_triangle(self):
     """Test getting the triangles adjacent to another triangle."""
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     self.assertEqual(-1, trtin.adjacent_triangle(0, 0))
     self.assertEqual(-1, trtin.adjacent_triangle(0, 1))
     self.assertEqual(2, trtin.adjacent_triangle(0, 2))
     self.assertEqual(-1, trtin.adjacent_triangle(1, 0))
     self.assertEqual(-1, trtin.adjacent_triangle(1, 1))
     self.assertEqual(2, trtin.adjacent_triangle(1, 2))
     self.assertEqual(1, trtin.adjacent_triangle(2, 0))
     self.assertEqual(-1, trtin.adjacent_triangle(2, 1))
     self.assertEqual(0, trtin.adjacent_triangle(2, 2))
Exemple #22
0
 def test_triangle_from_edge(self):
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     rv, tri, idx1, idx2 = trtin.triangle_from_edge(1, 3)
     self.assertEqual(rv, True)
     self.assertEqual(tri, 0)
     self.assertEqual(idx1, 2)
     self.assertEqual(idx2, 0)
     rv, tri, idx1, idx2 = trtin.triangle_from_edge(3, 1)
     self.assertEqual(rv, True)
     self.assertEqual(tri, 2)
     self.assertEqual(idx1, 2)
     self.assertEqual(idx2, 0)
     rv, tri, idx1, idx2 = trtin.triangle_from_edge(1, 0)
     self.assertEqual(rv, False)
Exemple #23
0
 def test_triangle_centroid(self):
     trtin = xt.Tin(self.pts)
     trtin.set_geometry(self.pts, self.tris, self.tris_adj)
     x0, y0, z0 = trtin.triangle_centroid(0)
     self.assertEqual(5, x0)
     self.assertAlmostEqual(3.333333333, y0, places=8)
     self.assertEqual(0, z0)
     x1, y1, z1 = trtin.triangle_centroid(1)
     self.assertEqual(15, x1)
     self.assertAlmostEqual(3.333333333, y1, places=8)
     self.assertEqual(0, z1)
     x2, y2, z2 = trtin.triangle_centroid(2)
     self.assertEqual(10, x2)
     self.assertAlmostEqual(6.666666666, y2, places=8)
     self.assertEqual(0, z2)
Exemple #24
0
 def test_optimize_triangulation(self):
     trtin = xt.Tin(self.pts)
     pts = (
         (0, 0, 0),
         (10, 0, 0),
         (20, 0, 0),
         (0, 10, 0),
         (10, 10, 0),
         (20, 10, 0),
         (0, 20, 0),
         (10, 20, 0),
         (20, 20, 0),
     )
     tris = (0, 1, 3, 1, 6, 3, 1, 4, 6, 4, 7, 6, 1, 2, 4, 2, 7, 4, 2, 5, 7,
             5, 8, 7)
     tris_adj = ((0, ), (0, 1, 2, 4), (4, 5, 6), (0, 1), (2, 4, 5, 3),
                 (6, 7), (1, 2, 3), (3, 5, 6, 7), (7, ))
     trtin.set_geometry(pts, tris, tris_adj)
     trtin.optimize_triangulation()
     np.testing.assert_array_equal(np.array(tris), trtin.triangles)
Exemple #25
0
 def test_get_boundary_points(self):
     trtin = xt.Tin(self.pts)
     pts = (
         (0, 0, 0),
         (10, 0, 0),
         (20, 0, 0),
         (0, 10, 0),
         (10, 10, 0),
         (20, 10, 0),
         (0, 20, 0),
         (10, 20, 0),
         (20, 20, 0),
     )
     tris = (0, 1, 3, 1, 6, 3, 1, 4, 6, 4, 7, 6, 1, 2, 4, 2, 7, 4, 2, 5, 7,
             5, 8, 7)
     tris_adj = ((0, ), (0, 1, 2, 4), (4, 5, 6), (0, 1), (2, 4, 5, 3),
                 (6, 7), (1, 2, 3), (3, 5, 6, 7), (7, ))
     trtin.set_geometry(pts, tris, tris_adj)
     np.testing.assert_array_equal(np.array([0, 1, 2, 3, 5, 6, 7, 8]),
                                   trtin.boundary_points)
Exemple #26
0
    def test_swap_edge(self):
        trtin = xt.Tin(self.pts)
        trtin.set_geometry(self.pts, self.tris, self.tris_adj)
        rv = trtin.swap_edge(0, 2, True)
        self.assertEqual(True, rv)
        self.assertEqual(trtin.triangles[0], 3)
        self.assertEqual(trtin.triangles[1], 0)
        self.assertEqual(trtin.triangles[2], 4)
        self.assertEqual(trtin.triangles[3], 1)
        self.assertEqual(trtin.triangles[4], 2)
        self.assertEqual(trtin.triangles[5], 4)
        self.assertEqual(trtin.triangles[6], 1)
        self.assertEqual(trtin.triangles[7], 4)
        self.assertEqual(trtin.triangles[8], 0)

        tris_adj = trtin.triangles_adjacent_to_points
        self.assertEqual((0, 2), tris_adj[0])
        self.assertEqual((1, 2), tris_adj[1])
        self.assertEqual((1, ), tris_adj[2])
        self.assertEqual((0, ), tris_adj[3])
        self.assertEqual((1, 2, 0), tris_adj[4])
Exemple #27
0
 def test_get_tris_adj(self):
     trtin = xt.Tin(self.pts)
     tris_adj = self.tris_adj
     trtin.triangles_adjacent_to_points = tris_adj
     self.assertEqual(tris_adj, trtin.triangles_adjacent_to_points)
Exemple #28
0
 def test_get_tris(self):
     trtin = xt.Tin(self.pts)
     tris = self.tris
     trtin.triangles = tris
     np.testing.assert_array_equal(tris, trtin.triangles)
Exemple #29
0
 def test_get_pts(self):
     trtin = xt.Tin(self.pts)
     pts = self.pts
     trtin.points = pts
     np.testing.assert_array_equal(pts, trtin.points)
Exemple #30
0
 def test_set_tris_adj_numpy(self):
     trtin = xt.Tin(self.pts)
     tris_adj = self.tris_adj_np
     trtin.triangles_adjacent_to_points = tris_adj
     np.testing.assert_array_equal(self.tris_adj,
                                   trtin.triangles_adjacent_to_points)