2018-09-21 01:54:12 +08:00
|
|
|
use na::{Real, DefaultAllocator, U2, U3};
|
|
|
|
|
|
|
|
use traits::{Number, Dimension, Alloc};
|
|
|
|
use aliases::Vec;
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `true` if two vectors are collinear (up to an epsilon).
|
2018-09-21 01:54:12 +08:00
|
|
|
pub fn are_collinear<N: Number>(v0: &Vec<N, U3>, v1: &Vec<N, U3>, epsilon: N) -> bool {
|
|
|
|
is_null(&v0.cross(v1), epsilon)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `true` if two 2D vectors are collinear (up to an epsilon).
|
2018-09-22 23:36:08 +08:00
|
|
|
pub fn are_collinear2d<N: Number>(v0: &Vec<N, U2>, v1: &Vec<N, U2>, epsilon: N) -> bool {
|
2018-09-21 01:54:12 +08:00
|
|
|
abs_diff_eq!(v0.perp(v1), N::zero(), epsilon = epsilon)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `true` if two vectors are orthogonal (up to an epsilon).
|
2018-09-21 01:54:12 +08:00
|
|
|
pub fn are_orthogonal<N: Number, D: Dimension>(v0: &Vec<N, D>, v1: &Vec<N, D>, epsilon: N) -> bool
|
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
abs_diff_eq!(v0.dot(v1), N::zero(), epsilon = epsilon)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
//pub fn are_orthonormal<N: Number, D: Dimension>(v0: &Vec<N, D>, v1: &Vec<N, D>, epsilon: N) -> bool
|
|
|
|
// where DefaultAllocator: Alloc<N, D> {
|
|
|
|
// unimplemented!()
|
|
|
|
//}
|
2018-09-21 01:54:12 +08:00
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `true` if all the components of `v` are zero (up to an epsilon).
|
2018-09-21 01:54:12 +08:00
|
|
|
pub fn is_comp_null<N: Number, D: Dimension>(v: &Vec<N, D>, epsilon: N) -> Vec<bool, D>
|
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
v.map(|x| abs_diff_eq!(x, N::zero(), epsilon = epsilon))
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `true` if `v` has a magnitude of 1 (up to an epsilon).
|
2018-09-21 01:54:12 +08:00
|
|
|
pub fn is_normalized<N: Real, D: Dimension>(v: &Vec<N, D>, epsilon: N) -> bool
|
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
abs_diff_eq!(v.norm_squared(), N::one(), epsilon = epsilon * epsilon)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `true` if `v` is zero (up to an epsilon).
|
2018-09-21 01:54:12 +08:00
|
|
|
pub fn is_null<N: Number, D: Dimension>(v: &Vec<N, D>, epsilon: N) -> bool
|
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
abs_diff_eq!(*v, Vec::<N, D>::zeros(), epsilon = epsilon)
|
|
|
|
}
|