()
| 381 | |
| 382 | #[test] |
| 383 | fn polygon_to_polygon_separated() { |
| 384 | let far = Geometry::polygon(vec![vec![ |
| 385 | [5.0, 5.0], |
| 386 | [6.0, 5.0], |
| 387 | [6.0, 6.0], |
| 388 | [5.0, 6.0], |
| 389 | [5.0, 5.0], |
| 390 | ]]); |
| 391 | let d = st_distance(&square(), &far); |
| 392 | assert!(d > 100_000.0, "got {d}"); |
| 393 | } |
| 394 | } |
nothing calls this directly
no test coverage detected