cgmath/src/angle.rs

220 lines
7.1 KiB
Rust
Raw Normal View History

2012-11-26 06:23:34 +00:00
use core::cmp::{Eq, Ord};
2012-11-29 06:31:14 +00:00
use funs::triganomic::{cos, sin};
use mat::{Mat3, Mat4};
use num::kinds::{Float, Number};
use num::conv::cast;
use quat::Quat;
2012-11-25 16:26:01 +00:00
use vec::Vec3;
/**
* The base trait for anglular units
*/
2012-12-05 08:10:51 +00:00
pub trait Angle<T>: Add<self,self>,
2012-12-05 10:03:39 +00:00
Sub<self,self>,
2012-12-05 08:10:51 +00:00
Mul<T,self>,
Div<T,self>,
// Div<self,T>, // TODO: not sure how to implement this, or if it is even possible...
Modulo<T,self>,
// Modulo<self,T>, // TODO: not sure how to implement this, or if it is even possible...
Neg<self>,
Eq, Ord {
2012-11-29 08:29:08 +00:00
static pure fn full_turn() -> self;
static pure fn half_turn() -> self;
static pure fn quadrant() -> self;
static pure fn sextant() -> self;
static pure fn octant() -> self;
2012-12-02 05:36:10 +00:00
static pure fn zero() -> self;
2012-11-27 02:34:15 +00:00
pure fn to_radians(&self) -> Radians<T>;
pure fn to_degrees(&self) -> Degrees<T>;
pure fn wrap(&self) -> self;
2012-11-30 12:28:58 +00:00
pure fn opposite(&self) -> self;
2012-11-25 16:26:01 +00:00
}
2012-11-29 01:17:36 +00:00
pub enum Radians<T> = T;
pub impl<T:Copy Float> Radians<T>: Angle<T> {
2012-12-04 01:38:59 +00:00
#[inline(always)] static pure fn full_turn() -> Radians<T> { Radians(Float::two_pi()) }
#[inline(always)] static pure fn half_turn() -> Radians<T> { Radians(Float::pi()) }
#[inline(always)] static pure fn quadrant() -> Radians<T> { Radians(Float::frac_pi_2()) }
#[inline(always)] static pure fn sextant() -> Radians<T> { Radians(Float::frac_pi_3()) }
#[inline(always)] static pure fn octant() -> Radians<T> { Radians(Float::frac_pi_4()) }
#[inline(always)] static pure fn zero() -> Radians<T> { Radians(Number::zero()) }
2012-11-27 02:34:15 +00:00
#[inline(always)] pure fn to_radians(&self) -> Radians<T> { *self }
#[inline(always)] pure fn to_degrees(&self) -> Degrees<T> { Degrees(**self * cast(180.0 / Float::pi())) }
2012-11-30 12:28:58 +00:00
#[inline(always)]
pure fn wrap(&self) -> Radians<T> {
let theta = (*self) % cast(2.0 * Float::pi());
2012-12-02 05:39:49 +00:00
// keep in the domain of 0 to 1 rad
if theta >= Angle::zero() {
theta
} else {
theta + Angle::full_turn()
}
2012-11-29 01:16:28 +00:00
}
2012-11-30 12:28:58 +00:00
#[inline(always)]
pure fn opposite(&self) -> Radians<T> {
(self + Angle::half_turn()).wrap() // TODO: test!
}
}
pub impl<T:Copy Float> Radians<T>: Add<Radians<T>, Radians<T>> {
2012-11-29 01:17:36 +00:00
#[inline(always)]
pure fn add(rhs: &Radians<T>) -> Radians<T> {
Radians(*self + **rhs)
}
}
pub impl<T:Copy Float> Radians<T>: Sub<Radians<T>, Radians<T>> {
2012-11-29 01:17:36 +00:00
#[inline(always)]
pure fn sub(&self, rhs: &Radians<T>) -> Radians<T> {
Radians(**self - **rhs)
2012-11-29 01:17:36 +00:00
}
}
pub impl<T:Copy Float> Radians<T>: Mul<T, Radians<T>> {
2012-11-29 01:17:36 +00:00
#[inline(always)]
pure fn mul(&self, rhs: &T) -> Radians<T> {
Radians(**self * *rhs)
2012-11-29 01:17:36 +00:00
}
}
pub impl<T:Copy Float> Radians<T>: Div<T, Radians<T>> {
2012-11-29 01:17:36 +00:00
#[inline(always)]
pure fn div(&self, rhs: &T) -> Radians<T> {
Radians(**self / *rhs)
2012-11-29 01:17:36 +00:00
}
}
pub impl<T:Copy Float> Radians<T>: Modulo<T, Radians<T>> {
2012-11-29 01:17:36 +00:00
#[inline(always)]
pure fn modulo(&self, rhs: &T) -> Radians<T> {
Radians(**self % *rhs)
2012-11-29 01:17:36 +00:00
}
}
pub impl<T:Copy Float> Radians<T>: Neg<Radians<T>> {
2012-11-29 01:17:36 +00:00
#[inline(always)]
pure fn neg(&self) -> Radians<T> {
Radians(-**self)
2012-11-29 01:17:36 +00:00
}
}
pub impl<T:Copy Float> Radians<T>: Eq {
#[inline(always)] pure fn eq(&self, other: &Radians<T>) -> bool { **self == **other }
#[inline(always)] pure fn ne(&self, other: &Radians<T>) -> bool { **self != **other }
2012-11-26 06:23:34 +00:00
}
pub impl<T:Copy Float> Radians<T>: Ord {
#[inline(always)] pure fn lt(&self, other: &Radians<T>) -> bool { **self < **other }
#[inline(always)] pure fn le(&self, other: &Radians<T>) -> bool { **self <= **other }
#[inline(always)] pure fn ge(&self, other: &Radians<T>) -> bool { **self >= **other }
#[inline(always)] pure fn gt(&self, other: &Radians<T>) -> bool { **self > **other }
2012-11-26 06:23:34 +00:00
}
2012-11-29 06:31:14 +00:00
pub impl<T> Radians<T>: ToStr {
pure fn to_str() -> ~str { fmt!("%? rad", *self) }
}
2012-11-29 01:17:36 +00:00
pub enum Degrees<T> = T;
2012-12-01 04:19:37 +00:00
// FIXME: not sure why I need the Eq and Ord trait bounds, but Rust complains if I don't include them
pub impl<T:Copy Float> Degrees<T>: Angle<T> {
2012-12-02 05:36:10 +00:00
#[inline(always)] static pure fn full_turn() -> Degrees<T> { Degrees(cast(360.0)) }
#[inline(always)] static pure fn half_turn() -> Degrees<T> { Degrees(cast(180.0)) }
#[inline(always)] static pure fn quadrant() -> Degrees<T> { Degrees(cast(90.0)) }
#[inline(always)] static pure fn sextant() -> Degrees<T> { Degrees(cast(60.0)) }
#[inline(always)] static pure fn octant() -> Degrees<T> { Degrees(cast(45.0)) }
#[inline(always)] static pure fn zero() -> Degrees<T> { Degrees(cast(0.0)) }
2012-11-27 02:34:15 +00:00
#[inline(always)] pure fn to_radians(&self) -> Radians<T> { Radians(**self * cast(Float::pi::<float>() / 180.0)) }
#[inline(always)] pure fn to_degrees(&self) -> Degrees<T> { *self }
2012-11-30 12:28:58 +00:00
#[inline(always)]
pure fn wrap(&self) -> Degrees<T> {
2012-12-02 05:39:49 +00:00
let theta = (*self) % cast(360);
// keep in the domain of 0 to 360 degrees
if theta >= Angle::zero() {
theta
} else {
theta + Angle::full_turn()
}
2012-11-29 01:16:28 +00:00
}
2012-11-30 12:28:58 +00:00
#[inline(always)]
pure fn opposite(&self) -> Degrees<T> {
(self + Angle::half_turn()).wrap() // TODO: test!
}
}
2012-11-29 01:17:36 +00:00
pub impl<T:Copy Float> Degrees<T>: Add<Degrees<T>, Degrees<T>> {
2012-11-29 01:17:36 +00:00
#[inline(always)]
pure fn add(rhs: &Degrees<T>) -> Degrees<T> {
Degrees(*self + **rhs)
}
}
pub impl<T:Copy Float> Degrees<T>: Sub<Degrees<T>, Degrees<T>> {
2012-11-29 01:17:36 +00:00
#[inline(always)]
pure fn sub(&self, rhs: &Degrees<T>) -> Degrees<T> {
Degrees(**self - **rhs)
2012-11-29 01:17:36 +00:00
}
}
pub impl<T:Copy Float> Degrees<T>: Mul<T, Degrees<T>> {
#[inline(always)]
pure fn mul(&self, rhs: &T) -> Degrees<T> {
Degrees(**self * *rhs)
2012-11-29 01:17:36 +00:00
}
}
pub impl<T:Copy Float> Degrees<T>: Div<T, Degrees<T>> {
#[inline(always)]
pure fn div(&self, rhs: &T) -> Degrees<T> {
Degrees(**self / *rhs)
2012-11-29 01:17:36 +00:00
}
}
pub impl<T:Copy Float> Degrees<T>: Modulo<T, Degrees<T>> {
#[inline(always)]
pure fn modulo(&self, rhs: &T) -> Degrees<T> {
Degrees(**self % *rhs)
2012-11-29 01:17:36 +00:00
}
}
pub impl<T:Copy Float> Degrees<T>: Neg<Degrees<T>> {
#[inline(always)]
pure fn neg(&self) -> Degrees<T> {
Degrees(-**self)
2012-11-29 01:17:36 +00:00
}
}
pub impl<T:Copy Float> Degrees<T>: Eq {
#[inline(always)] pure fn eq(&self, other: &Degrees<T>) -> bool { **self == **other }
#[inline(always)] pure fn ne(&self, other: &Degrees<T>) -> bool { **self != **other }
2012-11-26 06:23:34 +00:00
}
pub impl<T:Copy Float> Degrees<T>: Ord {
#[inline(always)] pure fn lt(&self, other: &Degrees<T>) -> bool { **self < **other }
#[inline(always)] pure fn le(&self, other: &Degrees<T>) -> bool { **self <= **other }
#[inline(always)] pure fn ge(&self, other: &Degrees<T>) -> bool { **self >= **other }
#[inline(always)] pure fn gt(&self, other: &Degrees<T>) -> bool { **self > **other }
2012-11-26 06:23:34 +00:00
}
2012-11-29 06:31:14 +00:00
pub impl<T> Degrees<T>: ToStr {
pure fn to_str() -> ~str { fmt!("%?\xB0", *self) }
2012-11-25 16:26:01 +00:00
}