From 1309dfe1e4651edfe99d3dead5a9da7149c984d0 Mon Sep 17 00:00:00 2001 From: William Joye Date: Thu, 28 Feb 2019 13:17:33 -0500 Subject: fix ps boundingbox --- tkblt/generic/tkbltGrPSOutput.C | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tkblt/generic/tkbltGrPSOutput.C b/tkblt/generic/tkbltGrPSOutput.C index 07d4864..01a3101 100644 --- a/tkblt/generic/tkbltGrPSOutput.C +++ b/tkblt/generic/tkbltGrPSOutput.C @@ -161,10 +161,10 @@ void PSOutput::computeBBox(int width, int height) vSize + vBorder; // Scale the plot size if it's bigger than the paper - double hScale = (hSize+hBorder) > paperWidth ? 1.0 : - paperWidth - hBorder / hSize; - double vScale = (vSize + vBorder) > paperHeight ? 1.0 : - paperHeight - vBorder / vSize; + double hScale = (hSize+hBorder)>paperWidth ? (paperWidth-hBorder)/hSize + : 1.0; + double vScale = (vSize+vBorder)>paperHeight ? (paperHeight-vBorder)/vSize + : 1.0; double scale = MIN(hScale, vScale); if (scale != 1.0) { -- cgit v0.12