#include "ui_save.h"
#include "imgui_stdlib.h"
#include <glm/glm.hpp>
#include <algorithm>
#include <exception>
#include <fstream>
Go to the source code of this file.
|
static void | write_data_float (size_t dim, const std::vector< float > &data, std::ofstream &handle) |
| Writes multi-dimensional data into the file by a given handler. More...
|
|
static void | write_data_2d (const std::vector< glm::vec2 > &data, std::ofstream &handle) |
| Writes two-dimensional data into the file by a given handler. More...
|
|
static void | write_clusters (std::vector< std::pair< const glm::vec3 *, int > > landmarks, const std::map< int, std::pair< glm::vec3, std::string > > &clusters, std::ofstream &handle) |
|
◆ write_clusters()
static void write_clusters |
( |
std::vector< std::pair< const glm::vec3 *, int > > |
landmarks, |
|
|
const std::map< int, std::pair< glm::vec3, std::string > > & |
clusters, |
|
|
std::ofstream & |
handle |
|
) |
| |
|
static |
◆ write_data_2d()
static void write_data_2d |
( |
const std::vector< glm::vec2 > & |
data, |
|
|
std::ofstream & |
handle |
|
) |
| |
|
static |
Writes two-dimensional data into the file by a given handler.
- Parameters
-
data | Two-dimensional data to be written. |
handle | Handle to the opened file for writing. |
Definition at line 155 of file ui_save.cpp.
◆ write_data_float()
static void write_data_float |
( |
size_t |
dim, |
|
|
const std::vector< float > & |
data, |
|
|
std::ofstream & |
handle |
|
) |
| |
|
static |
Writes multi-dimensional data into the file by a given handler.
- Parameters
-
dim | Dimension of the data. |
data | Multi-dimensional data to be written. |
handle | Handle to the opened file for writing. |
Definition at line 136 of file ui_save.cpp.