-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlib.rs
56 lines (43 loc) · 1.06 KB
/
lib.rs
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]
#![deny(
anonymous_parameters,
dead_code,
late_bound_lifetime_arguments,
path_statements,
patterns_in_fns_without_body,
rust_2018_idioms,
trivial_casts,
trivial_numeric_casts,
unreachable_pub,
unsafe_code,
unused_extern_crates,
missing_debug_implementations
)]
#![warn(missing_docs)]
#![deny(clippy::all)]
mod mat33;
pub use crate::mat33::Mat33;
#[macro_use]
mod measurement;
pub use crate::measurement::Measurement;
mod angle;
pub use crate::angle::Angle;
pub mod ellipsoidal;
mod local_frame;
pub use crate::local_frame::{r2xyz, r2zyx, xyz2r, zyx2r, LocalFrame, LocalPosition};
mod length;
pub use crate::length::Length;
mod numbers;
mod positions;
pub use crate::positions::{
Cartesian3DVector, GeocentricPosition, GeodeticPosition, LatLong, NVector,
};
mod speed;
pub use crate::speed::Speed;
pub mod spherical;
mod surface;
pub use crate::surface::Surface;
mod vec3;
pub use crate::vec3::Vec3;
mod vehicle;
pub use crate::vehicle::Vehicle;