|
auto | read_header () -> void |
|
auto | read_data () -> void |
|
auto | read_spacing (std::ifstream &file) -> void |
|
auto | read_dimensions (std::ifstream &file) -> void |
|
auto | read_origin (std::ifstream &file) -> void |
|
auto | read_points (std::ifstream &file) -> void |
|
template<typename Real > |
auto | read_points_ascii (std::ifstream &file, std::size_t const n) -> void |
|
template<typename Real > |
auto | read_points_binary (std::ifstream &file, std::size_t const n) -> void |
|
auto | read_cell_types (std::ifstream &file) -> void |
|
auto | read_cell_types_ascii (std::ifstream &file, std::size_t const n) -> void |
|
auto | read_cell_types_binary (std::ifstream &file, std::size_t const n) -> void |
|
auto | read_indices (std::ifstream &file) -> std::vector< int > |
|
auto | read_scalars_header (std::ifstream &file) |
|
auto | read_scalars (std::ifstream &file) -> void |
|
template<typename Real > |
auto | read_scalars_ascii (std::ifstream &file, std::string const &name, std::string const &lookup_table, std::size_t const num_comps) -> void |
|
template<typename Real > |
auto | read_scalars_binary (std::ifstream &file, std::string const &name, std::string const &lookup_table, std::size_t const num_comps) -> void |
|
auto | read_data_header (std::ifstream &file) |
|
template<typename Real , std::size_t N> |
auto | read_data (std::ifstream &file) -> std::vector< std::array< Real, N > > |
|
template<typename Real , std::size_t N> |
auto | read_data_ascii (std::ifstream &file) -> std::vector< std::array< Real, N > > |
|
template<typename Real , std::size_t N> |
auto | read_data_binary (std::ifstream &file) -> std::vector< std::array< Real, N > > |
|
auto | read_coordinates_header (std::ifstream &file) |
|
template<typename Real > |
auto | read_coordinates (std::ifstream &file, std::size_t n) |
|
template<typename Real > |
auto | read_coordinates_ascii (std::ifstream &file, std::size_t n) -> std::vector< Real > |
|
template<typename Real > |
auto | read_coordinates_binary (std::ifstream &file, std::size_t n) -> std::vector< Real > |
|
auto | read_x_coordinates (std::ifstream &file) -> void |
|
auto | read_y_coordinates (std::ifstream &file) -> void |
|
auto | read_z_coordinates (std::ifstream &file) -> void |
|
auto | read_cells (std::ifstream &file) -> void |
|
auto | read_vertices (std::ifstream &file) -> void |
|
auto | read_lines (std::ifstream &file) -> void |
|
auto | read_polygons (std::ifstream &file) -> void |
|
auto | read_triangle_strips (std::ifstream &file) -> void |
|
auto | read_vectors (std::ifstream &file) -> void |
|
auto | read_normals (std::ifstream &file) -> void |
|
auto | read_texture_coordinates (std::ifstream &file) -> void |
|
auto | read_tensors (std::ifstream &file) -> void |
|
auto | read_field_header (std::ifstream &file) -> std::pair< std::string, std::size_t > |
|
auto | read_field_array_header (std::ifstream &file) -> std::tuple< std::string, std::size_t, std::size_t, std::string > |
|
auto | read_field (std::ifstream &file) -> void |
|
template<typename Real > |
auto | read_field_array_binary (std::ifstream &file, std::size_t num_comps, std::size_t num_tuples) -> std::vector< Real > |
|
template<typename Real > |
auto | read_field_array_ascii (std::ifstream &file, std::size_t num_comps, std::size_t num_tuples) -> std::vector< Real > |
|