2018-09-23 20:41:56 +08:00
|
|
|
use na::{Real, DefaultAllocator};
|
2018-09-20 16:50:34 +08:00
|
|
|
|
2018-09-20 20:23:31 +08:00
|
|
|
use traits::{Number, Alloc, Dimension};
|
2018-09-23 20:48:45 +08:00
|
|
|
use aliases::{TVec, TVec3};
|
2018-09-20 16:50:34 +08:00
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// The cross product of two vectors.
|
2018-09-23 20:41:56 +08:00
|
|
|
pub fn cross<N: Number, D: Dimension>(x: &TVec3<N>, y: &TVec3<N>) -> TVec3<N> {
|
2018-09-20 16:50:34 +08:00
|
|
|
x.cross(y)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// The distance between two points.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn distance<N: Real, D: Dimension>(p0: &TVec<N, D>, p1: &TVec<N, D>) -> N
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
(p1 - p0).norm()
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// The dot product of two vectors.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn dot<N: Number, D: Dimension>(x: &TVec<N, D>, y: &TVec<N, D>) -> N
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
x.dot(y)
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// If `dot(nref, i) < 0.0`, return `n`, otherwise, return `-n`.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn faceforward<N: Number, D: Dimension>(n: &TVec<N, D>, i: &TVec<N, D>, nref: &TVec<N, D>) -> TVec<N, D>
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
2018-09-20 20:23:31 +08:00
|
|
|
if nref.dot(i) < N::zero() {
|
|
|
|
n.clone()
|
|
|
|
} else {
|
|
|
|
-n.clone()
|
|
|
|
}
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// The magnitude of a vector.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn length<N: Real, D: Dimension>(x: &TVec<N, D>) -> N
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
x.norm()
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// The magnitude of a vector.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn magnitude<N: Real, D: Dimension>(x: &TVec<N, D>) -> N
|
2018-09-22 19:18:59 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
x.norm()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Normalizes a vector.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn normalize<N: Real, D: Dimension>(x: &TVec<N, D>) -> TVec<N, D>
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
|
|
|
x.normalize()
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// For the incident vector `i` and surface orientation `n`, returns the reflection direction : `result = i - 2.0 * dot(n, i) * n`.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn reflect_vec<N: Number, D: Dimension>(i: &TVec<N, D>, n: &TVec<N, D>) -> TVec<N, D>
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
2018-09-20 20:23:31 +08:00
|
|
|
let _2 = N::one() + N::one();
|
|
|
|
i - n * (n.dot(i) * _2)
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// For the incident vector `i` and surface normal `n`, and the ratio of indices of refraction `eta`, return the refraction vector.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn refract_vec<N: Real, D: Dimension>(i: &TVec<N, D>, n: &TVec<N, D>, eta: N) -> TVec<N, D>
|
2018-09-20 16:50:34 +08:00
|
|
|
where DefaultAllocator: Alloc<N, D> {
|
2018-09-20 20:23:31 +08:00
|
|
|
|
|
|
|
let ni = n.dot(i);
|
|
|
|
let k = N::one() - eta * eta * (N::one() - ni * ni);
|
|
|
|
|
|
|
|
if k < N::zero() {
|
2018-09-23 20:48:45 +08:00
|
|
|
TVec::<_, D>::zeros()
|
2018-09-20 20:23:31 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
i * eta - n * (eta * dot(n, i) + k.sqrt())
|
|
|
|
}
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|