diff options
author | joye <joye> | 2014-04-11 16:42:14 (GMT) |
---|---|---|
committer | joye <joye> | 2014-04-11 16:42:14 (GMT) |
commit | fcc86a2d2288dcdfcf6138ee6d9941076e87aa82 (patch) | |
tree | 10612a5c5e99e8901c53703a640cf0feb870e119 /src/bltGrAxis.C | |
parent | bbf3ce66d2bed48818d0ea0de7cb71c80eb3bae3 (diff) | |
download | blt-fcc86a2d2288dcdfcf6138ee6d9941076e87aa82.zip blt-fcc86a2d2288dcdfcf6138ee6d9941076e87aa82.tar.gz blt-fcc86a2d2288dcdfcf6138ee6d9941076e87aa82.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'src/bltGrAxis.C')
-rw-r--r-- | src/bltGrAxis.C | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/bltGrAxis.C b/src/bltGrAxis.C index 4fe4105..8500d32 100644 --- a/src/bltGrAxis.C +++ b/src/bltGrAxis.C @@ -766,36 +766,6 @@ double Axis::vMap(double y) // Support -Point2d Blt_Map2D(Graph* graphPtr, double x, double y, Axis2d *axesPtr) -{ - Point2d point; - - if (graphPtr->inverted) { - point.x = axesPtr->y->hMap(y); - point.y = axesPtr->x->vMap(x); - } - else { - point.x = axesPtr->x->hMap(x); - point.y = axesPtr->y->vMap(y); - } - return point; -} - -Point2d Blt_InvMap2D(Graph* graphPtr, double x, double y, Axis2d *axesPtr) -{ - Point2d point; - - if (graphPtr->inverted) { - point.x = axesPtr->x->invVMap(y); - point.y = axesPtr->y->invHMap(x); - } - else { - point.x = axesPtr->x->invHMap(x); - point.y = axesPtr->y->invVMap(y); - } - return point; -} - void GetDataLimits(Axis *axisPtr, double min, double max) { if (axisPtr->valueRange_.min > min) { |