logo
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
57
//! The foundation for UX-Framework of AngularRust

pub mod colorschemes;
pub mod colorspace;

mod angle;
pub use angle::*;

mod box2d;
pub use box2d::*;

// mod box3d;
// pub use box3d::*;

mod image;
pub use image::*;

mod length;
pub use length::*;

mod offset;
pub use offset::*;

// mod point2d;
// pub use point2d::*;

// mod point3d;
// pub use point3d::*;

mod rect;
pub use rect::*;

mod size2d;
pub use size2d::*;

// mod size3d;
// pub use size3d::*;

mod style;
pub use style::*;

mod text;
pub use text::*;

mod vector2d;
pub use vector2d::*;

mod vector3d;
pub use vector3d::*;

/// Alias for `crate::Size2D`.
pub use Size2D as Size;
/// Alias for `crate::Point2`.
// pub use crate::Point2D as Point;
pub use Vector2D as Point;
pub use Vector2D as Point2D;
pub use Vector3D as Point3D;