1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
import mapbox_earcut as earcut
import numpy as np
import pytest
def test_valid_triangulation_float32():
verts = np.array([[0, 0], [1, 0], [1, 1]], dtype=np.float32).reshape(-1, 2)
rings = np.array([3])
result = earcut.triangulate_float32(verts, rings)
assert result.dtype == np.uint32
assert result.shape == (3, )
assert np.all(result == np.array([1, 2, 0]))
def test_valid_triangulation_float64():
verts = np.array([[0, 0], [1, 0], [1, 1]], dtype=np.float64).reshape(-1, 2)
rings = np.array([3])
result = earcut.triangulate_float32(verts, rings)
assert result.dtype == np.uint32
assert result.shape == (3, )
assert np.all(result == np.array([1, 2, 0]))
def test_valid_triangulation_int32():
verts = np.array([[0, 0], [1, 0], [1, 1]], dtype=np.int32).reshape(-1, 2)
rings = np.array([3])
result = earcut.triangulate_float32(verts, rings)
assert result.dtype == np.uint32
assert result.shape == (3, )
assert np.all(result == np.array([1, 2, 0]))
def test_inverted_vertex_order():
verts = np.array(
list(reversed([[0, 0], [1, 0], [1, 1]])), dtype=np.int32).reshape(
-1, 2)
rings = np.array([3])
result = earcut.triangulate_float32(verts, rings)
assert result.dtype == np.uint32
assert result.shape == (3, )
assert np.all(result == np.array([1, 0, 2]))
def test_no_triangles():
verts = np.array([[0, 0], [1, 0], [1, 1]], dtype=np.int32).reshape(-1, 2)
rings = np.array([2, 3])
result = earcut.triangulate_float32(verts, rings)
assert result.dtype == np.uint32
assert result.shape == (0, )
def test_valid_triangulation_int64():
verts = np.array([[0, 0], [1, 0], [1, 1]], dtype=np.int64).reshape(-1, 2)
rings = np.array([3])
result = earcut.triangulate_float32(verts, rings)
assert result.dtype == np.uint32
assert result.shape == (3, )
assert np.all(result == np.array([1, 2, 0]))
def test_end_index_too_large():
verts = np.array([[0, 0], [1, 0], [1, 1]]).reshape(-1, 2)
rings = np.array([5])
with pytest.raises(ValueError):
_ = earcut.triangulate_float32(verts, rings)
def test_end_index_too_small():
verts = np.array([[0, 0], [1, 0], [1, 1]]).reshape(-1, 2)
rings = np.array([2])
with pytest.raises(ValueError):
_ = earcut.triangulate_float32(verts, rings)
def test_end_index_neg():
verts = np.array([[0, 0], [1, 0], [1, 1]]).reshape(-1, 2)
rings = np.array([-1])
with pytest.raises(ValueError):
_ = earcut.triangulate_float32(verts, rings)
def test_rings_not_increasing():
verts = np.array([[0, 0], [1, 0], [1, 1]]).reshape(-1, 2)
rings = np.array([3, 0, 3])
with pytest.raises(ValueError):
_ = earcut.triangulate_float32(verts, rings)
def test_rings_same():
verts = np.array([[0, 0], [1, 0], [1, 1]]).reshape(-1, 2)
rings = np.array([3, 3])
with pytest.raises(ValueError):
_ = earcut.triangulate_float32(verts, rings)
def test_no_rings():
verts = np.array([[0, 0], [1, 0], [1, 1]]).reshape(-1, 2)
rings = np.array([])
with pytest.raises(ValueError):
_ = earcut.triangulate_float32(verts, rings)
def test_empty_data():
verts = np.array([]).reshape(-1, 2)
rings = np.array([])
result = earcut.triangulate_float32(verts, rings)
assert result.shape == (0, )
|