| 63 | //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 64 | |
| 65 | string FGColumnVector3::Dump(const string& delimiter) const |
| 66 | { |
| 67 | ostringstream buffer; |
| 68 | buffer << std::setprecision(16) << data[0] << delimiter; |
| 69 | buffer << std::setprecision(16) << data[1] << delimiter; |
| 70 | buffer << std::setprecision(16) << data[2]; |
| 71 | return buffer.str(); |
| 72 | } |
| 73 | |
| 74 | //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 75 |
nothing calls this directly
no outgoing calls
no test coverage detected