///|
/// Compute the sine and cosine of a number multiplied by pi simultaneously
pub fn sincospi(x : Double) -> (Double, Double) {
  (sinpi(x), cospi(x))
}