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
pub mod convert;
#[macro_use]
pub mod ops;
pub mod query;
pub mod space;
mod cgmath;
mod mint;
mod nalgebra;
use std::cmp::Ordering;
use decorum::R64;
use num::{self, Num, NumCast, One, Zero};
pub mod prelude {
pub use crate::query::{Intersection as _, ReciprocalIntersection as _};
pub use crate::Lattice as _;
}
pub trait Category {
type Object;
}
impl<T> Category for (T, T) {
type Object = T;
}
impl<T> Category for (T, T, T) {
type Object = T;
}
pub trait Converged: Category {
fn converged(value: Self::Object) -> Self;
}
impl<T> Converged for (T, T)
where
T: Clone,
{
fn converged(value: Self::Object) -> Self {
(value.clone(), value)
}
}
impl<T> Converged for (T, T, T)
where
T: Clone,
{
fn converged(value: Self::Object) -> Self {
(value.clone(), value.clone(), value)
}
}
pub trait Lattice: PartialOrd + Sized {
fn meet(&self, other: &Self) -> Self;
fn join(&self, other: &Self) -> Self;
fn meet_join(&self, other: &Self) -> (Self, Self) {
(self.meet(other), self.join(other))
}
fn partial_min<'a>(&'a self, other: &'a Self) -> Option<&'a Self> {
match self.partial_cmp(other) {
Some(Ordering::Greater) => Some(other),
Some(_) => Some(self),
None => None,
}
}
fn partial_max<'a>(&'a self, other: &'a Self) -> Option<&'a Self> {
match self.partial_cmp(other) {
Some(Ordering::Less) => Some(other),
Some(_) => Some(self),
None => None,
}
}
fn partial_ordered_pair<'a>(&'a self, other: &'a Self) -> Option<(&'a Self, &'a Self)> {
match self.partial_cmp(other) {
Some(Ordering::Less) => Some((self, other)),
Some(_) => Some((other, self)),
None => None,
}
}
fn partial_clamp<'a>(&'a self, min: &'a Self, max: &'a Self) -> Option<&'a Self> {
let _ = (min, max);
unimplemented!()
}
}
impl<T> Lattice for T
where
T: Copy + PartialOrd + Sized,
{
fn meet(&self, other: &Self) -> Self {
if *self <= *other {
*self
}
else {
*other
}
}
fn join(&self, other: &Self) -> Self {
if *self >= *other {
*self
}
else {
*other
}
}
}
pub fn lerp<T>(a: T, b: T, f: R64) -> T
where
T: Num + NumCast,
{
let f = num::clamp(f, Zero::zero(), One::one());
let af = <R64 as NumCast>::from(a).unwrap() * (R64::one() - f);
let bf = <R64 as NumCast>::from(b).unwrap() * f;
<T as NumCast>::from(af + bf).unwrap()
}
fn partial_min<T>(a: T, b: T) -> T
where
T: Copy + Lattice,
{
*a.partial_min(&b).unwrap()
}
fn partial_max<T>(a: T, b: T) -> T
where
T: Copy + Lattice,
{
*a.partial_max(&b).unwrap()
}