| 422 | } |
| 423 | |
| 424 | void DatapickerTest::mapCartesianToLog10XY() { |
| 425 | DatapickerImage::ReferencePoints points; |
| 426 | points.type = DatapickerImage::GraphType::Log10XY; |
| 427 | QPointF point{5, 2.23}; |
| 428 | |
| 429 | Transform t; |
| 430 | VECTOR3D_EQUAL(t.mapCartesianToType(point, points), QVector3D(pow(10, 5), pow(10, 2.23), 0)); |
| 431 | } |
| 432 | |
| 433 | void DatapickerTest::mapCartesianToPolarInDegree() { |
| 434 | DatapickerImage::ReferencePoints points; |
nothing calls this directly
no test coverage detected