1use nalgebra::{Point2, RealField, Unit, Vector2, Vector3, convert};
2use simba::scalar::SubsetOf;
3
4#[derive(Debug, Clone, Default)]
11pub struct First<N: Copy + RealField> {
12 ray: Option<Unit<Vector3<N>>>,
14}
15
16impl<N: Copy + RealField> First<N> {
17 pub const fn capture(&mut self, yaw_axis: Unit<Vector3<N>>) {
19 self.ray = Some(yaw_axis);
20 }
21 pub fn compute(&self, vec: &Vector2<N>, max: &Point2<N>) -> Option<(N, N, &Unit<Vector3<N>>)> {
27 self.ray.as_ref().map(|ray| {
28 let max = max.x.max(max.y) * convert(0.5);
29 (vec.y / max, vec.x / max, ray)
30 })
31 }
32 pub const fn discard(&mut self) {
34 self.ray = None;
35 }
36 #[must_use]
38 pub const fn enabled(&self) -> bool {
39 self.ray.is_some()
40 }
41 #[must_use]
43 pub const fn yaw_axis(&self) -> Option<&Unit<Vector3<N>>> {
44 self.ray.as_ref()
45 }
46 #[must_use]
48 pub fn cast<M: Copy + RealField>(self) -> First<M>
49 where
50 N: SubsetOf<M>,
51 {
52 First {
53 ray: self.ray.map(Unit::<Vector3<N>>::cast),
54 }
55 }
56}