diff options
author | joye <joye> | 2014-06-27 19:56:35 (GMT) |
---|---|---|
committer | joye <joye> | 2014-06-27 19:56:35 (GMT) |
commit | b4a656e5a895f5caf5235b34dfbbbff217263cde (patch) | |
tree | 12fc2fcbd6e54554bec03b2f68ff4d510ace0126 /src | |
parent | 9e9dd8ccf1d2b4e344d43cf462d27d2c710786b9 (diff) | |
download | blt-b4a656e5a895f5caf5235b34dfbbbff217263cde.zip blt-b4a656e5a895f5caf5235b34dfbbbff217263cde.tar.gz blt-b4a656e5a895f5caf5235b34dfbbbff217263cde.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r-- | src/bltGrElemBar.C | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/bltGrElemBar.C b/src/bltGrElemBar.C index ff50e48..977635d 100644 --- a/src/bltGrElemBar.C +++ b/src/bltGrElemBar.C @@ -1090,7 +1090,7 @@ void BarElement::mapErrorBars(BarStyle **dataToStyle) Point2d q = graphPtr_->map2D(low, y, ops->xAxis, ops->yAxis); segPtr->p = p; segPtr->q = q; - if (LineRectClip(®, &segPtr->p, &segPtr->q)) { + if (lineRectClip(®, &segPtr->p, &segPtr->q)) { segPtr++; *indexPtr++ = ii; } @@ -1098,7 +1098,7 @@ void BarElement::mapErrorBars(BarStyle **dataToStyle) segPtr->p.x = segPtr->q.x = p.x; segPtr->p.y = p.y - stylePtr->errorBarCapWidth; segPtr->q.y = p.y + stylePtr->errorBarCapWidth; - if (LineRectClip(®, &segPtr->p, &segPtr->q)) { + if (lineRectClip(®, &segPtr->p, &segPtr->q)) { segPtr++; *indexPtr++ = ii; } @@ -1106,7 +1106,7 @@ void BarElement::mapErrorBars(BarStyle **dataToStyle) segPtr->p.x = segPtr->q.x = q.x; segPtr->p.y = q.y - stylePtr->errorBarCapWidth; segPtr->q.y = q.y + stylePtr->errorBarCapWidth; - if (LineRectClip(®, &segPtr->p, &segPtr->q)) { + if (lineRectClip(®, &segPtr->p, &segPtr->q)) { segPtr++; *indexPtr++ = ii; } @@ -1152,7 +1152,7 @@ void BarElement::mapErrorBars(BarStyle **dataToStyle) Point2d q = graphPtr_->map2D(x, low, ops->xAxis, ops->yAxis); segPtr->p = p; segPtr->q = q; - if (LineRectClip(®, &segPtr->p, &segPtr->q)) { + if (lineRectClip(®, &segPtr->p, &segPtr->q)) { segPtr++; *indexPtr++ = ii; } @@ -1160,7 +1160,7 @@ void BarElement::mapErrorBars(BarStyle **dataToStyle) segPtr->p.y = segPtr->q.y = p.y; segPtr->p.x = p.x - stylePtr->errorBarCapWidth; segPtr->q.x = p.x + stylePtr->errorBarCapWidth; - if (LineRectClip(®, &segPtr->p, &segPtr->q)) { + if (lineRectClip(®, &segPtr->p, &segPtr->q)) { segPtr++; *indexPtr++ = ii; } @@ -1168,7 +1168,7 @@ void BarElement::mapErrorBars(BarStyle **dataToStyle) segPtr->p.y = segPtr->q.y = q.y; segPtr->p.x = q.x - stylePtr->errorBarCapWidth; segPtr->q.x = q.x + stylePtr->errorBarCapWidth; - if (LineRectClip(®, &segPtr->p, &segPtr->q)) { + if (lineRectClip(®, &segPtr->p, &segPtr->q)) { segPtr++; *indexPtr++ = ii; } |