| 136 | } |
| 137 | |
| 138 | std::string ToString(float a_value) |
| 139 | { |
| 140 | std::ostringstream outs; |
| 141 | outs.precision(7); |
| 142 | outs << std::defaultfloat << a_value; |
| 143 | return outs.str(); |
| 144 | } |
| 145 | |
| 146 | void PrintFirstComponent(const std::string & in, const std::string & out) |
| 147 | { |