2018-09-22 19:18:59 +08:00
|
|
|
use na::{DefaultAllocator};
|
2018-09-20 16:50:34 +08:00
|
|
|
|
|
|
|
use aliases::Vec;
|
2018-09-20 20:23:31 +08:00
|
|
|
use traits::{Number, Alloc, Dimension};
|
2018-09-20 16:50:34 +08:00
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Checks that all the vector components are `true`.
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn all<D: Dimension>(v: &Vec<bool, D>) -> bool
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<bool, D> {
|
|
|
|
v.iter().all(|x| *x)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Checks that at least one of the vector components is `true`.
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn any<D: Dimension>(v: &Vec<bool, D>) -> bool
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<bool, D> {
|
|
|
|
v.iter().any(|x| *x)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise equality comparison.
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn equal<N: Number, D: Dimension>(x: &Vec<N, D>, y: &Vec<N, D>) -> Vec<bool, D>
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
x.zip_map(y, |x, y| x == y)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise `>` comparison.
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn greater_than<N: Number, D: Dimension>(x: &Vec<N, D>, y: &Vec<N, D>) -> Vec<bool, D>
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
x.zip_map(y, |x, y| x > y)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise `>=` comparison.
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn greater_than_equal<N: Number, D: Dimension>(x: &Vec<N, D>, y: &Vec<N, D>) -> Vec<bool, D>
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
x.zip_map(y, |x, y| x >= y)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise `<` comparison.
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn less_than<N: Number, D: Dimension>(x: &Vec<N, D>, y: &Vec<N, D>) -> Vec<bool, D>
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
x.zip_map(y, |x, y| x < y)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise `>=` comparison.
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn less_than_equal<N: Number, D: Dimension>(x: &Vec<N, D>, y: &Vec<N, D>) -> Vec<bool, D>
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
x.zip_map(y, |x, y| x <= y)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise not `!`.
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn not<D: Dimension>(v: &Vec<bool, D>) -> Vec<bool, D>
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<bool, D> {
|
|
|
|
v.map(|x| !x)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise not-equality `!=`.
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn not_equal<N: Number, D: Dimension>(x: &Vec<N, D>, y: &Vec<N, D>) -> Vec<bool, D>
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
x.zip_map(y, |x, y| x != y)
|
|
|
|
}
|