Small beautification of the Coloquinte bloat factor display.
This commit is contained in:
parent
b77d86c931
commit
f8637737a0
|
@ -848,7 +848,9 @@ namespace Etesian {
|
||||||
double densityVariation = getDensityVariation();
|
double densityVariation = getDensityVariation();
|
||||||
double bloatFactor = 1.0 + std::max(spaceMargin - densityVariation, 0.0);
|
double bloatFactor = 1.0 + std::max(spaceMargin - densityVariation, 0.0);
|
||||||
if (bloatFactor != 1.0) {
|
if (bloatFactor != 1.0) {
|
||||||
cmess1 << " - Cells inflated by " << bloatFactor << endl;
|
ostringstream bf;
|
||||||
|
bf << fixed << setprecision(2) << bloatFactor << "%";
|
||||||
|
cmess1 << ::Dots::asString( " - Coloquinte cell bloat factor ", bf.str() ) << endl;
|
||||||
}
|
}
|
||||||
int rowHeight = (getSliceHeight() + vpitch - 1) / vpitch;
|
int rowHeight = (getSliceHeight() + vpitch - 1) / vpitch;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue