| 404 | } |
| 405 | |
| 406 | void DatapickerTest::mapCartesianToLog10X() { |
| 407 | DatapickerImage::ReferencePoints points; |
| 408 | points.type = DatapickerImage::GraphType::Log10X; |
| 409 | QPointF point{5, 2343.23}; |
| 410 | |
| 411 | Transform t; |
| 412 | VECTOR3D_EQUAL(t.mapCartesianToType(point, points), QVector3D(pow(10, 5), 2343.23f, 0)); |
| 413 | } |
| 414 | |
| 415 | void DatapickerTest::mapCartesianToLog10Y() { |
| 416 | DatapickerImage::ReferencePoints points; |
nothing calls this directly
no test coverage detected