forked from JuliaGeometry/GeometryTypes.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolygons.jl
76 lines (69 loc) · 1.33 KB
/
polygons.jl
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
@testset "Polygons" begin
@testset "construction" begin
points = Point2f0[
(0,6),
(0,0),
(3,0),
(4,1),
(6,1),
(8,0),
(12,0),
(13,2),
(8,2),
(8,4),
(11,4),
(11,6),
(6,6),
(4,3),
(2,6)
]
mesh = GLNormalMesh(points)
faces = polygon2faces(points, Triangle{Int})
@test eltype(faces) == Triangle{Int}
@test facetype(mesh) == GLTriangle
end
@testset "area-2d" begin
points = Point2f0[
(0,0),
(1,0),
(1,1),
(0,1)
]
@test area(points) ≈ 1f0
@test area(reverse(points)) ≈ -1f0
end
@testset "area-2d-nonconvex" begin
points = Point2f0[
(0,0),
(1,0),
(0.5,0.5),
(1,1),
(0,1),
(0.5,0.5)
]
@test area(points) ≈ 0.5f0
@test area(reverse(points)) ≈ -0.5f0
end
@testset "area-3d" begin
points = Point3f0[
(0,0,0),
(1,0,0),
(1,1,0),
(0,1,0)
]
@test area(points) ≈ 1f0
@test area(reverse(points)) ≈ 1f0
end
@testset "area-3d-nonconvex" begin
points = Point3f0[
(0,0,0),
(1,0,0),
(0.5,0.5,0),
(1,1,0),
(0,1,0),
(0.5,0.5,0)
]
@test area(points) ≈ 0.5f0
@test area(reverse(points)) ≈ 0.5f0
end
end