TetGen.jl icon indicating copy to clipboard operation
TetGen.jl copied to clipboard

Julia's TetGen wrapper

Results 6 TetGen.jl issues
Sort by recently updated
recently updated
newest added

The example in the README contains something like: ```julia mesh!(ax1,normal_mesh(result),color=:blue, transparency=false, overdraw=false,shading = FastShading) ``` Where use is made of `normal_mesh`. However this function does not correctly obtain the triangles....

The function `TetGen.voronoi()` seems giving wrong results. I think Voronoi diagram should contain no nodes from the input by definition. I want to generate a Voronoi diagram of points distributed...

It seems as though this line is triggering some type instability: https://github.com/JuliaGeometry/TetGen.jl/blob/4ce1bd589ebfc5a3eb14f729ae5f9657274df7d6/src/cppwrapper.jl#L290-L296 One solution towards this is parsing of the arguments to determine the actual type parameters in the `tetrahedralize`...

Based on the cube (quad) mesh example provided in the README, I've just tried to apply this to triangular boundary surfaces. E.g. like this: ```julia F = TriangleFace{Cint}[TriangleFace(1, 2, 3),...