MCPcopy Create free account
hub / github.com/Profactor/cv-plot / untransform

Method untransform

CvPlot/inc/CvPlot/core/Transformation.h:78–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76 return cv::Point2d(std::log(point.x), point.y);
77 }
78 cv::Point2d untransform(const cv::Point2d &point)const override {
79 return cv::Point2d(std::exp(point.x), point.y);
80 }
81 std::pair<double, double> transformXLim(std::pair<double, double> xlim)const override {
82 return LogLogTransformation::transformLogLim(xlim);
83 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected