Added unit support to trig functions

This commit is contained in:
2023-08-02 09:51:36 -07:00
parent aa94df1df1
commit 705824921f
3 changed files with 91 additions and 15 deletions

View File

@ -16,12 +16,13 @@ cross-compilation to other systems. RUG does not work on all systems.
*/
mod scalar;
pub(in crate::quantity) use crate::quantity::scalar::Scalar;
pub use crate::quantity::scalar::Scalar;
mod unit;
pub use crate::quantity::unit::Unit;
pub use crate::quantity::unit::FreeUnit;
pub use crate::quantity::unit::WholeUnit;
mod quantity;
pub use crate::quantity::quantity::Quantity;