| 431 | } |
| 432 | |
| 433 | void DatapickerTest::mapCartesianToPolarInDegree() { |
| 434 | DatapickerImage::ReferencePoints points; |
| 435 | points.type = DatapickerImage::GraphType::PolarInDegree; |
| 436 | QPointF point{5, 30}; |
| 437 | |
| 438 | Transform t; |
| 439 | VECTOR3D_EQUAL(t.mapCartesianToType(point, points), QVector3D(30.413812651491f, 80.537677791974f, 0)); |
| 440 | } |
| 441 | |
| 442 | void DatapickerTest::mapCartesianToPolarInRadians() { |
| 443 | DatapickerImage::ReferencePoints points; |
nothing calls this directly
no test coverage detected