1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! Mirrors `boost/geometry/test/concepts/
//! point_spherical_with_wrong_units.cpp`: passing `f64` as the
//! angle-unit type to `Spherical<U>` (instead of `Degree` or
//! `Radian`) must fail to compile because `f64` is not an
//! `AngleUnit`.
//!
//! The point type is hand-rolled (rather than `geometry_model::Point`)
//! so the fixture stays inside the `geometry-trait` dependency layer —
//! the `AngleUnit` rejection lives in `geometry-cs` and needs nothing
//! from `geometry-model`.
use Spherical;
use PointTag;
use ;
;