Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/libcore/num/f32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,12 @@ impl Trigonometric for f32 {

#[inline(always)]
fn atan2(&self, other: f32) -> f32 { atan2(*self, other) }

/// Simultaneously computes the sine and cosine of the number
#[inline(always)]
fn sin_cos(&self) -> (f32, f32) {
(self.sin(), self.cos())
}
}

impl Exponential for f32 {
Expand Down
6 changes: 6 additions & 0 deletions src/libcore/num/f64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,12 @@ impl Trigonometric for f64 {

#[inline(always)]
fn atan2(&self, other: f64) -> f64 { atan2(*self, other) }

/// Simultaneously computes the sine and cosine of the number
#[inline(always)]
fn sin_cos(&self) -> (f64, f64) {
(self.sin(), self.cos())
}
}

impl Exponential for f64 {
Expand Down
8 changes: 8 additions & 0 deletions src/libcore/num/float.rs
Original file line number Diff line number Diff line change
Expand Up @@ -530,6 +530,14 @@ impl Trigonometric for float {
fn atan2(&self, other: float) -> float {
(*self as f64).atan2(other as f64) as float
}

/// Simultaneously computes the sine and cosine of the number
#[inline(always)]
fn sin_cos(&self) -> (float, float) {
match (*self as f64).sin_cos() {
(s, c) => (s as float, c as float)
}
}
}

impl Exponential for float {
Expand Down
1 change: 1 addition & 0 deletions src/libcore/num/num.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ pub trait Trigonometric {
fn acos(&self) -> Self;
fn atan(&self) -> Self;
fn atan2(&self, other: Self) -> Self;
fn sin_cos(&self) -> (Self, Self);
}

pub trait Exponential {
Expand Down