NESSie.Format
Input formats
NESSie.Format.readhmo_nodes
— Functionreadhmo_nodes(
stream::IOStream,
::Type{T}=Float64
)
Reads all nodes from the given HMO file.
Return type
Vector{Vector{T}}
NESSie.Format.readhmo_elements
— Functionreadhmo_elements(
stream::IOStream,
nodes ::Vector{Vector{T}}
)
Reads all elements from the given HMO file.
Return type
Vector{Triangle{T}}
NESSie.Format.readhmo_charges
— Functionreadhmo_charges(
stream::IOStream,
::Type{T}=Float64
)
Reads all charges from the given HMO file.
Return type
Vector{Charge{T}}
NESSie.Format.readmcsf_nodes
— Functionreadmcsf_nodes(
stream::IOStream,
::Type{T}=Float64
)
Reads all nodes from the given GAMer-generated mcsf file.
Return type
Vector{Vector{T}}
NESSie.Format.readmcsf_elements
— Functionreadmcsf_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}}
NESSie.Format.readmsms_nodes
— Functionreadmsms_nodes(
stream::IOStream,
::Type{T}=Float64
)
Reads all nodes from the given MSMS-generated .vert
file.
Return type
Vector{Vector{T}}
NESSie.Format.readmsms_elements
— Functionreadmsms_elements(
stream::IOStream,
nodes ::Vector{Vector{T}}
)
Reads all elements from the given MSMS-generated .face
file.
Return type
Vector{Triangle{T}}
NESSie.Format.readoff_nodes
— Functionreadoff_nodes(
stream::IOStream,
n ::Int,
::Type{T}=Float64
)
Reads the first n
nodes from the given OFF file.
Return type
Vector{Vector{T}}
NESSie.Format.readoff_elements
— Functionreadoff_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}}