Skip to content
This repository was archived by the owner on Nov 22, 2023. It is now read-only.

Commit c42a2b3

Browse files
authored
Merge pull request #182 from CarpeNecopinum/patch-1
Fix `area` for higher dimensions
2 parents f956c0c + 61d35e5 commit c42a2b3

File tree

2 files changed

+61
-2
lines changed

2 files changed

+61
-2
lines changed

src/polygons.jl

+12-2
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,27 @@ The above copyright notice and this permission notice shall be included in all c
1313
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1414
=#
1515

16-
function area(contour::AbstractVector{Point{N, T}}) where {N, T}
16+
function area(contour::AbstractVector{Point{2, T}}) where {T}
1717
n = length(contour)
1818
A = zero(T)
19-
p=n; q=1
19+
p=lastindex(contour)
20+
q=firstindex(contour)
2021
while q <= n
2122
A += cross(contour[p], contour[q])
2223
p = q; q +=1
2324
end
2425
return A*T(0.5)
2526
end
2627

28+
function area(contour::AbstractVector{Point{3, T}}) where {T}
29+
A = zero(eltype(contour))
30+
o = contour[1]
31+
for i in (firstindex(contour)+1):(lastindex(contour)-1)
32+
A += cross(contour[i] - o, contour[i+1] - o)
33+
end
34+
return norm(A)*T(0.5)
35+
end
36+
2737
"""
2838
InsideTriangle decides if a point P is Inside of the triangle
2939
defined by A, B, C.

test/polygons.jl

+49
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,53 @@
2424
@test facetype(mesh) == GLTriangle
2525

2626
end
27+
28+
@testset "area-2d" begin
29+
points = Point2f0[
30+
(0,0),
31+
(1,0),
32+
(1,1),
33+
(0,1)
34+
]
35+
@test area(points) 1f0
36+
@test area(reverse(points)) -1f0
37+
end
38+
39+
@testset "area-2d-nonconvex" begin
40+
points = Point2f0[
41+
(0,0),
42+
(1,0),
43+
(0.5,0.5),
44+
(1,1),
45+
(0,1),
46+
(0.5,0.5)
47+
]
48+
@test area(points) 0.5f0
49+
@test area(reverse(points)) -0.5f0
50+
end
51+
52+
@testset "area-3d" begin
53+
points = Point3f0[
54+
(0,0,0),
55+
(1,0,0),
56+
(1,1,0),
57+
(0,1,0)
58+
]
59+
@test area(points) 1f0
60+
@test area(reverse(points)) 1f0
61+
end
62+
63+
@testset "area-3d-nonconvex" begin
64+
points = Point3f0[
65+
(0,0,0),
66+
(1,0,0),
67+
(0.5,0.5,0),
68+
(1,1,0),
69+
(0,1,0),
70+
(0.5,0.5,0)
71+
]
72+
@test area(points) 0.5f0
73+
@test area(reverse(points)) 0.5f0
74+
end
75+
2776
end

0 commit comments

Comments
 (0)