diff options
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) { |