trig-const 0.1.2

Const trig functions in Rust
Documentation

trig-const

Rust implementation of const trig functions.

This is implemented using a 16-term Taylor series approximation of cosine. Correctness is favored over speed, especially considering the main use case for this crate is to expose trigonometric functions for compile time.

The implemntation was largely inspired by the work of Dr. Austin Henley and Dr. Stephen Marz:

The implementation carries forward the original MIT license contained in the GitHub repo above.

Project Goals

  • Correctness while const (same result as std within a rounding error)
  • no-std
  • No unsafe

Requirements

This crate supports any compiler version back to rustc 1.85.1

[dependencies]
trig-const = "0"

Example

const COS_PI: f64 = cos(PI);
assert_eq!(COS_PI, -1.0);