index
:
ray-tracing-the-next-week
main
An implementation of the program described in Ray Tracing in One Weekend and Ray Tracing: The Next Week, in Rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
util.rs
blob: cbd5813159ff2a1ca53c00949a5a69e7152111d5 (
plain
)
1
2
3
pub
fn
degrees_to_radians
(
degrees
:
f64
)
->
f64
{
degrees
*
std
::
f64
::
consts
::
PI
/
180.0
}