|
1 |
| -using BenchmarkTools |
2 | 1 | using GeometryBasics
|
3 | 2 | using MarchingCubes
|
4 | 3 | using Meshes
|
|
118 | 117 | MarchingCubes.output(PlyIO, mc, tempname(); verbose = false)
|
119 | 118 | end
|
120 | 119 |
|
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 |
| - |
129 | 120 | @testset "normalize" begin
|
130 | 121 | nx, ny, nz = 10, 20, 30
|
131 | 122 | start_x, stop_x = -0.1, 0.1
|
|
187 | 178 | msh = MarchingCubes.makemesh(GeometryBasics, mc)
|
188 | 179 | @test msh isa GeometryBasics.Mesh
|
189 | 180 | @test length(msh.position) == length(mc.vertices)
|
190 |
| - @test length(msh.normals) == length(mc.normals) |
| 181 | + @test length(msh.normal) == length(mc.normals) |
191 | 182 |
|
192 | 183 | @test_throws ArgumentError MarchingCubes.makemesh(PlyIO, mc)
|
193 | 184 | 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