| 46 | } |
| 47 | |
| 48 | void interaction::InteractionContext::Start() { |
| 49 | // this->startRange_ = this->range_; |
| 50 | const std::string &xField = this->chart_->GetXScaleField(); |
| 51 | auto &scale = this->chart_->GetScale(xField); |
| 52 | lastTickCount_ = scale.tickCount; |
| 53 | this->chart_->GetLogTracer()->trace("InteractionContext#Start range:{%lf, %lf} ", range_[0], range_[1]); |
| 54 | } |
| 55 | |
| 56 | bool interaction::InteractionContext::DoMove(double deltaX, double deltaY) { |
| 57 | // chart_->GetLogTracer()->trace("DoMove deltaX %lf ", deltaX); |
no test coverage detected