|
| template<typename T > |
| T | read (std::ifstream &file) |
| |
| template<typename T > |
| void | readArray (T *res, int num, std::ifstream &file) |
| |
| template<typename T > |
| void | write (std::ofstream &file, T value) |
| |
| template<typename T > |
| void | writeArray (std::ofstream &file, const T *value, int num) |
| |
| bool | readString (std::string &res, std::ifstream &file) |
| |
| bool | readMatrix4f (Eigen::Matrix4f &res, std::ifstream &file) |
| |
| void | writeMatrix4f (std::ofstream &file, const Eigen::Matrix4f &m) |
| |
| void | writeString (std::ofstream &file, const std::string &value) |
| |
| std::vector< Eigen::Vector3f > VIRTUAL_ROBOT_IMPORT_EXPORT | readPts (const std::string &filename, const char separator=' ') |
| |