22 const std::string& file_path)
const noexcept {
24 std::ifstream ifs(file_path);
28 return unexpected(
"Cannot open file. file name: " + file_path);
32 std::vector<Vector3> map_point;
36 while (std::getline(ifs, line)) {
37 std::istringstream iss(line);
43 map_point.push_back(point);