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 24 of file GMSInterface.cpp.

25{
26 return {std::strtod((++it)->c_str(), nullptr),
27 std::strtod((++it)->c_str(), nullptr),
28 std::strtod((++it)->c_str(), nullptr)};
29}