| 368 | // Reference calculations done with https://keisan.casio.com/exec/system/1223526375 |
| 369 | |
| 370 | void DatapickerTest::mapCartesianToLinear() { |
| 371 | DatapickerImage::ReferencePoints points; |
| 372 | points.type = DatapickerImage::GraphType::Linear; |
| 373 | QPointF point{5, 2343.23}; |
| 374 | |
| 375 | Transform t; |
| 376 | VECTOR3D_EQUAL(t.mapCartesianToType(point, points), QVector3D(5, 2343.23f, 0)); |
| 377 | } |
| 378 | |
| 379 | void DatapickerTest::mapCartesianToLnX() { |
| 380 | DatapickerImage::ReferencePoints points; |
nothing calls this directly
no test coverage detected