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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#![no_std]
#![allow(unused_imports)]
pub mod basis;
pub mod matrix;
pub mod primitives;
pub mod quaternion;
pub mod queries;
pub mod scalar;
pub mod transforms;
pub mod vector;
pub use basis::*;
pub use matrix::{Matrix2, Matrix3, Matrix4};
pub use primitives::*;
pub use quaternion::Quat;
pub use queries::*;
pub use scalar::{FloatScalar, Scalar};
pub use transforms::*;
pub use vector::{
CrossProduct, FloatVector, Swizzle2, Swizzle3, Vector, Vector2, Vector3, Vector4,
};
pub type Color4b = Vector4<u8>;
pub type Vec2i = Vector2<i32>;
pub type Vec3i = Vector3<i32>;
pub type Vec4i = Vector4<i32>;
pub type Vec2f = Vector2<f32>;
pub type Vec3f = Vector3<f32>;
pub type Vec4f = Vector4<f32>;
pub type Vec2d = Vector2<f64>;
pub type Vec3d = Vector3<f64>;
pub type Vec4d = Vector4<f64>;
pub type Quatf = Quat<f32>;
pub type Quatd = Quat<f64>;
pub type Mat2f = Matrix2<f32>;
pub type Mat3f = Matrix3<f32>;
pub type Mat4f = Matrix4<f32>;
pub type Mat2d = Matrix2<f64>;
pub type Mat3d = Matrix3<f64>;
pub type Mat4d = Matrix4<f64>;
pub type Recti = Rect<i32>;
pub type Rectf = Rect<f32>;
pub type Rectd = Rect<f64>;
pub type Dimensioni = Dimension<i32>;
pub type Dimensionf = Dimension<f32>;
pub type Line2f = Line<f32, Vec2f>;
pub type Line2d = Line<f64, Vec2d>;
pub type Line3f = Line<f32, Vec3f>;
pub type Line3d = Line<f64, Vec3d>;
pub type Segment2f = Segment<f32, Vec2f>;
pub type Segment2d = Segment<f64, Vec2d>;
pub type Segment3f = Segment<f32, Vec3f>;
pub type Segment3d = Segment<f64, Vec3d>;
pub type Planef = Plane<f32>;
pub type Planed = Plane<f64>;
pub type Ray3f = Ray<f32, Vec3f>;
pub type Ray3d = Ray<f64, Vec3d>;
pub type Box3f = Box3<f32>;
pub type Box3d = Box3<f64>;
pub type Basisf = Basis<f32>;
pub type Basisd = Basis<f64>;
pub type ParametricPlanef = ParametricPlane<f32>;
pub type ParametricPlaned = ParametricPlane<f64>;
pub fn color4b(r: u8, g: u8, b: u8, a: u8) -> Color4b {
Color4b {
x: r,
y: g,
z: b,
w: a,
}
}
#[cfg(feature = "fixedpoint")]
mod fixedpoint {
use super::*;
pub use scalar::{Hx, Lx};
pub type Vec2x = Vector2<Lx>;
pub type Vec3x = Vector3<Lx>;
pub type Vec4x = Vector4<Lx>;
pub type Vec2X = Vector2<Hx>;
pub type Vec3X = Vector3<Hx>;
pub type Vec4X = Vector4<Hx>;
pub type Quatx = Quat<Lx>;
pub type QuatX = Quat<Hx>;
pub type Mat2x = Matrix2<Lx>;
pub type Mat3x = Matrix3<Lx>;
pub type Mat4x = Matrix4<Lx>;
pub type Mat2X = Matrix2<Hx>;
pub type Mat3X = Matrix3<Hx>;
pub type Mat4X = Matrix4<Hx>;
pub type Rectx = Rect<Lx>;
pub type RectX = Rect<Hx>;
pub type Dimensionx = Dimension<Lx>;
pub type DimensionX = Dimension<Hx>;
pub type Line2x = Line<Lx, Vec2x>;
pub type Line2X = Line<Hx, Vec2X>;
pub type Line3x = Line<Lx, Vec3x>;
pub type Line3X = Line<Hx, Vec3X>;
pub type Segment2x = Segment<Lx, Vec2x>;
pub type Segment2X = Segment<Hx, Vec2X>;
pub type Segment3x = Segment<Lx, Vec3x>;
pub type Segment3X = Segment<Hx, Vec3X>;
pub type Planex = Plane<Lx>;
pub type PlaneX = Plane<Hx>;
pub type Ray3x = Ray<Lx, Vec3f>;
pub type Ray3X = Ray<Hx, Vec3X>;
pub type Box3x = Box3<Lx>;
pub type Box3X = Box3<Hx>;
}
#[cfg(feature = "fixedpoint")]
pub use fixedpoint::*;