1
0
Fork 0

YASim: minor modification of CLI tool output to make copy&paste to XML easier

This commit is contained in:
Henning Stahlke 2018-01-31 07:49:09 +01:00
parent a88a498d20
commit 4497df4ecd

View file

@ -600,7 +600,7 @@ void Wing::printSectionInfo()
printf("#wing sections: %d\n", _sections.size());
for (int section=0; section < _sections.size(); section++) {
ws = (WingSection*)_sections.get(section);
printf("Section %d base point (%.3f, %.3f, %.3f), chord %.3f, incidence at section root %.1fdeg\n", section,
printf("Section %d base point: x=\"%.3f\" y=\"%.3f\" z=\"%.3f\" chord=\"%.3f\" incidence=\"%.1f\" (at section root in deg)\n", section,
ws->_rootChord.x, ws->_rootChord.y, ws->_rootChord.z, ws->_rootChord.length, ws->_sectionIncidence * RAD2DEG);
}
}