OGS
anonymous_namespace{GMSInterface.cpp} Namespace Reference

Functions

template<typename It >
std::array< double, 3 > parsePointCoordinates (It &it)
 

Function Documentation

◆ parsePointCoordinates()

template<typename It >
std::array< double, 3 > anonymous_namespace{GMSInterface.cpp}::parsePointCoordinates ( It & it)

Definition at line 34 of file GMSInterface.cpp.

35{
36 return {std::strtod((++it)->c_str(), nullptr),
37 std::strtod((++it)->c_str(), nullptr),
38 std::strtod((++it)->c_str(), nullptr)};
39}