add to_degrees/to_radians fns (#1709)

updates

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2024-03-13 00:33:50 -07:00
committed by GitHub
parent 2d979b56f5
commit 6bab45a56a
4 changed files with 132 additions and 0 deletions

View File

@ -100,6 +100,8 @@ lazy_static! {
Box::new(crate::std::math::Log2),
Box::new(crate::std::math::Log10),
Box::new(crate::std::math::Ln),
Box::new(crate::std::math::ToDegrees),
Box::new(crate::std::math::ToRadians),
];
}