MCPcopy Create free account
hub / github.com/JSBSim-Team/jsbsim / Dump

Method Dump

src/math/FGColumnVector3.cpp:65–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
64
65string 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected