2018-10-22 04:11:27 +08:00
|
|
|
use na::{self, DefaultAllocator, Real};
|
2018-09-20 16:50:34 +08:00
|
|
|
|
2018-09-23 20:48:45 +08:00
|
|
|
use aliases::TVec;
|
2018-09-20 20:23:31 +08:00
|
|
|
use traits::{Alloc, Dimension};
|
2018-09-20 16:50:34 +08:00
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise arc-cosinus.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn acos<N: Real, D: Dimension>(x: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
x.map(|e| e.acos())
|
|
|
|
}
|
2018-09-20 20:23:31 +08:00
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise hyperbolic arc-cosinus.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn acosh<N: Real, D: Dimension>(x: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
x.map(|e| e.acosh())
|
|
|
|
}
|
2018-09-20 20:23:31 +08:00
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise arc-sinus.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn asin<N: Real, D: Dimension>(x: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
x.map(|e| e.asin())
|
|
|
|
}
|
2018-09-20 20:23:31 +08:00
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise hyperbolic arc-sinus.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn asinh<N: Real, D: Dimension>(x: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
x.map(|e| e.asinh())
|
|
|
|
}
|
2018-09-20 20:23:31 +08:00
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise arc-tangent of `y / x`.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn atan2<N: Real, D: Dimension>(y: &TVec<N, D>, x: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
y.zip_map(x, |y, x| y.atan2(x))
|
|
|
|
}
|
2018-09-20 20:23:31 +08:00
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise arc-tangent.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn atan<N: Real, D: Dimension>(y_over_x: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
y_over_x.map(|e| e.atan())
|
|
|
|
}
|
2018-09-20 20:23:31 +08:00
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise hyperbolic arc-tangent.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn atanh<N: Real, D: Dimension>(x: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
x.map(|e| e.atanh())
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise cosinus.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn cos<N: Real, D: Dimension>(angle: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
angle.map(|e| e.cos())
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise hyperbolic cosinus.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn cosh<N: Real, D: Dimension>(angle: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
angle.map(|e| e.cosh())
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise conversion from radians to degrees.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn degrees<N: Real, D: Dimension>(radians: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
radians.map(|e| e * na::convert(180.0) / N::pi())
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise conversion fro degrees to radians.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn radians<N: Real, D: Dimension>(degrees: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
degrees.map(|e| e * N::pi() / na::convert(180.0))
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise sinus.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn sin<N: Real, D: Dimension>(angle: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
angle.map(|e| e.sin())
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise hyperbolic sinus.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn sinh<N: Real, D: Dimension>(angle: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
angle.map(|e| e.sinh())
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise tangent.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn tan<N: Real, D: Dimension>(angle: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
angle.map(|e| e.tan())
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:21:02 +08:00
|
|
|
/// Component-wise hyperbolic tangent.
|
2018-09-23 20:48:45 +08:00
|
|
|
pub fn tanh<N: Real, D: Dimension>(angle: &TVec<N, D>) -> TVec<N, D>
|
2018-10-22 04:11:27 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Alloc<N, D>,
|
|
|
|
{
|
2018-09-20 16:50:34 +08:00
|
|
|
angle.map(|e| e.tanh())
|
2018-09-20 20:23:31 +08:00
|
|
|
}
|