diff --git a/src/mesh/mesh.jl b/src/mesh/mesh.jl index 8821ad8..9642a8e 100644 --- a/src/mesh/mesh.jl +++ b/src/mesh/mesh.jl @@ -153,16 +153,6 @@ struct Mesh{N,T<:AbstractTopology{N}} <: AbstractMesh end # Positional constructor for convenience (backward compatibility) -function Mesh{T}( - nodes::Vector{Vec{3,Float64}}, - connectivity::Vector{NTuple{N,UInt32}}, - element_sets::Dict{Symbol,Set{UInt32}}=Dict{Symbol,Set{UInt32}}(), - node_sets::Dict{Symbol,Set{UInt32}}=Dict{Symbol,Set{UInt32}}() -) where {N,T<:AbstractTopology{N}} - Mesh{N,T}(nodes, connectivity, element_sets, node_sets) -end - -# Keyword constructor for convenience function Mesh{T}( nodes::Vector{Vec{3,Float64}}, connectivity::Vector{NTuple{N,UInt32}};