Mesh: correct display of bounding box values

This commit is contained in:
vocx-fc
2020-08-23 10:10:23 -05:00
committed by wwmayer
parent 6feb1d1cee
commit 84c4b3ac25

View File

@@ -120,9 +120,9 @@ public:
numPoints->setText(QString::number(countPoints));
numFacets->setText(QString::number(countFacets));
numMin->setText(QString::fromLatin1("X: %1\tY: %2\tZ: %3")
.arg(bbox.MinX).arg(bbox.MinX).arg(bbox.MinX));
.arg(bbox.MinX).arg(bbox.MinY).arg(bbox.MinZ));
numMax->setText(QString::fromLatin1("X: %1\tY: %2\tZ: %3")
.arg(bbox.MaxX).arg(bbox.MaxX).arg(bbox.MaxX));
.arg(bbox.MaxX).arg(bbox.MaxY).arg(bbox.MaxZ));
}
else {
numPoints->setText(QString::fromLatin1(""));