NESSie.Format

Input formats

NESSie.Format.readhmo_nodesFunction
readhmo_nodes(
    stream::IOStream,
          ::Type{T}=Float64
)

Reads all nodes from the given HMO file.

Return type

Vector{Vector{T}}

source
NESSie.Format.readhmo_elementsFunction
readhmo_elements(
    stream::IOStream,
    nodes ::Vector{Vector{T}}
)

Reads all elements from the given HMO file.

Return type

Vector{Triangle{T}}

source
NESSie.Format.readmcsf_nodesFunction
readmcsf_nodes(
    stream::IOStream,
          ::Type{T}=Float64
)

Reads all nodes from the given GAMer-generated mcsf file.

Return type

Vector{Vector{T}}

source
NESSie.Format.readmcsf_elementsFunction
readmcsf_elements(
    stream::IOStream,
    nodes ::Vector{Vector{T}};
    # kwargs
    domain::Symbol=:none
)

Reads all elements from the given GAMer-generated mcsf file.

Return type

Vector{Tetrahedron{T}}

source
NESSie.Format.readmsms_nodesFunction
readmsms_nodes(
    stream::IOStream,
          ::Type{T}=Float64
)

Reads all nodes from the given MSMS-generated .vert file.

Return type

Vector{Vector{T}}

source
NESSie.Format.readmsms_elementsFunction
readmsms_elements(
    stream::IOStream,
    nodes ::Vector{Vector{T}}
)

Reads all elements from the given MSMS-generated .face file.

Return type

Vector{Triangle{T}}

source
NESSie.Format.readoff_nodesFunction
readoff_nodes(
    stream::IOStream,
    n     ::Int,
          ::Type{T}=Float64
)

Reads the first n nodes from the given OFF file.

Return type

Vector{Vector{T}}

source
NESSie.Format.readoff_elementsFunction
readoff_elements(
    stream::IOStream,
    n     ::Int,
    nodes ::Vector{Vector{T}},
          ::Type{T}=Float64
)

Reads the first n elements from the given OFF file.

Return type

Vector{Triangle{T}}

source