#include <stdexcept>
#include <string>
#include <vector>
#include <sstream>
#include <loguru/loguru.hpp>
#include <Eigen/Dense>
Go to the source code of this file.
|
using | Vec3 = Eigen::Matrix< double, 3, 1 > |
|
using | Rot3 = Eigen::Quaternion< double > |
|
|
void | str2array (const char *str_, double *arr) |
|
void | str2double (const char *in, double &num_) |
| a locale-safe version of string-to-double
|
|
void | split (const std::string &str, std::vector< std::string > &split_result, const std::string &delimiter) |
| splits a string by a delimiter into a vector of strings.
|
|
◆ Rot3
using Rot3 = Eigen::Quaternion<double> |
◆ Vec3
using Vec3 = Eigen::Matrix<double, 3, 1> |
◆ split()
void split |
( |
const std::string & |
str, |
|
|
std::vector< std::string > & |
split_result, |
|
|
const std::string & |
delimiter |
|
) |
| |
splits a string by a delimiter into a vector of strings.
◆ str2array()
void str2array |
( |
const char * |
str_, |
|
|
double * |
arr |
|
) |
| |
◆ str2double()
void str2double |
( |
const char * |
in, |
|
|
double & |
num_ |
|
) |
| |
a locale-safe version of string-to-double