Skip to content

Commit

Permalink
rm cruft
Browse files Browse the repository at this point in the history
  • Loading branch information
sjkelly committed Jul 2, 2024
1 parent 34ada52 commit 6929b51
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 46 deletions.
12 changes: 1 addition & 11 deletions src/algorithmtypes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ abstract type AbstractAdaptiveMeshingAlgorithm end


"""
MarchingCubes(iso=0.0)
MarchingCubes(;iso=0.0)
Specifies the use of the Marching Cubes algorithm for isosurface extraction.
This algorithm provides a good balance between performance and vertex count.
Expand All @@ -28,10 +28,7 @@ Base.@kwdef struct MarchingCubes{T} <: AbstractMeshingAlgorithm
end

"""
MarchingTetrahedra(iso=0.0, eps=1e-3)
MarchingTetrahedra(;iso=0.0, eps=1e-3)
MarchingTetrahedra(iso)
MarchingTetrahedra(iso,eps)
Specifies the use of the Marching Tetrahedra algorithm for isosurface extraction.
This algorithm has a roughly 2x performance penalty compared to Marching Cubes,
Expand Down Expand Up @@ -75,10 +72,3 @@ struct AdaptiveMarchingTetrahedra{T} <: AbstractAdaptiveMeshingAlgorithm
rtol::T
atol::T
end


#
# Helper functions
#

default_face_length(::Union{MarchingCubes,MarchingTetrahedra}) = 3
35 changes: 0 additions & 35 deletions src/lut/sn.jl

This file was deleted.

0 comments on commit 6929b51

Please sign in to comment.