Skip to content

Commit 71e3b84

Browse files
support AbstractRange types for coordinate vectors (#29)
Co-authored-by: t-bltg <[email protected]>
1 parent 3571695 commit 71e3b84

File tree

5 files changed

+56
-13
lines changed

5 files changed

+56
-13
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
version:
21-
- '1.10' # latest LTS
21+
- 'lts'
2222
- '1'
2323
experimental:
2424
- false

.github/workflows/format-check.yml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
else
3131
@error "Some files have not been formatted !!!"
3232
write(stdout, out)
33+
run(`git diff`)
3334
exit(1)
3435
end
3536
'

src/MarchingCubes.jl

+5-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,11 @@ struct MC{F,I}
7373
y::AbstractVector{F} = F[],
7474
z::AbstractVector{F} = F[],
7575
) where {F<:AbstractFloat,G<:Integer} = begin
76-
abs(normal_sign) == 1 || throw(ArgumentError("`normal_sign` should be either -1 or +1"))
76+
isa(x, AbstractRange) && (x = collect(x))
77+
isa(y, AbstractRange) && (y = collect(y))
78+
isa(z, AbstractRange) && (z = collect(z))
79+
abs(normal_sign) == 1 ||
80+
throw(ArgumentError("`normal_sign` should be either -1 or +1"))
7781
m = new{F,I}(
7882
size(vol)...,
7983
Ref(vol),

src/example.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ makemesh_GeometryBasics(GeometryBasics::Module, m::MC) = begin
126126
vertices = map(GeometryBasics.Point3f, m.vertices)
127127
normals = map(GeometryBasics.Vec3f, m.normals)
128128
triangles = map(t -> GeometryBasics.TriangleFace(t...), m.triangles)
129-
GeometryBasics.Mesh(GeometryBasics.meta(vertices; normals), triangles)
129+
GeometryBasics.Mesh(vertices, triangles; normal = normals)
130130
end
131131

132132
makemesh(mod::Module, m::MC) =

test/runtests.jl

+48-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using BenchmarkTools
21
using GeometryBasics
32
using MarchingCubes
43
using Meshes
@@ -118,14 +117,6 @@ end
118117
MarchingCubes.output(PlyIO, mc, tempname(); verbose = false)
119118
end
120119

121-
@testset "types" begin
122-
for F (Float16, Float32, Float64)
123-
for I (Int16, Int32, Int64, Int128, UInt16, UInt32, UInt64, UInt128)
124-
@test march(MarchingCubes.scenario(4, 4, 4; F, I)) isa Nothing
125-
end
126-
end
127-
end
128-
129120
@testset "normalize" begin
130121
nx, ny, nz = 10, 20, 30
131122
start_x, stop_x = -0.1, 0.1
@@ -187,7 +178,54 @@ end
187178
msh = MarchingCubes.makemesh(GeometryBasics, mc)
188179
@test msh isa GeometryBasics.Mesh
189180
@test length(msh.position) == length(mc.vertices)
190-
@test length(msh.normals) == length(mc.normals)
181+
@test length(msh.normal) == length(mc.normals)
191182

192183
@test_throws ArgumentError MarchingCubes.makemesh(PlyIO, mc)
193184
end
185+
186+
@testset "coordinate input variations" begin
187+
atol = 1e-3 # precision level
188+
189+
# define coordinate ranges (also creating 3 different lengths)
190+
nx, ny, nz = 55, 46, 67 # these should be high enough to reach precision level
191+
start_x, stop_x = -1.0, 1.0 # range limits centered on 0
192+
start_y, stop_y = -1.2, 1.2 # range limits centered on 0
193+
start_z, stop_z = -2.3, 2.3 # range limits centered on 0
194+
x = range(start_x, stop_x; length = nx)
195+
y = range(start_y, stop_y; length = ny)
196+
z = range(start_z, stop_z; length = nz)
197+
198+
# create image (simple coordinate norm leading to spherical isosurface)
199+
A = [(xi^2 + yi^2 + zi^2) for xi x, yi y, zi z]
200+
201+
level = 0.5 # isolevel should produce sphere with this radius
202+
203+
# process isosurface with ranged coordinate input
204+
mc_ranged = MC(A, Int; x, y, z)
205+
march(mc_ranged, level)
206+
207+
xv, yv, zv = collect.(Float64, (x, y, z))
208+
209+
# process isosurface with vector coordinate input
210+
mc_vector = MC(A, Int; x = xv, y = yv, z = zv)
211+
march(mc_vector, level)
212+
213+
# test equivalence between ranged and vector input
214+
@test mc_ranged.vertices == mc_vector.vertices
215+
@test mc_ranged.triangles == mc_vector.triangles
216+
217+
# test if coordinate input was used appropriately geometrically as expected
218+
n = length(mc_ranged.vertices)
219+
c = sum(mc_ranged.vertices) / n # mean coordinate i.e. center
220+
r = sum(v -> (sum(abs2, v)), mc_ranged.vertices) / n # mean radius
221+
@test isapprox(c, zeros(3); atol) # approximately zero mean for sphere
222+
@test isapprox(r, level; atol) # approximately radius matching level
223+
end
224+
225+
@testset "types" begin
226+
for F (Float16, Float32, Float64),
227+
I (Int16, Int32, Int64, Int128, UInt16, UInt32, UInt64, UInt128)
228+
229+
@test march(MarchingCubes.scenario(4, 4, 4; F, I)) isa Nothing
230+
end
231+
end

0 commit comments

Comments
 (0)