mirror of
https://github.com/rm-dr/daisy
synced 2025-04-04 04:18:02 -07:00
Comments
This commit is contained in:
parent
be043af4f0
commit
a76af3c69a
@ -154,6 +154,7 @@ impl Unit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// True if base units are the same
|
// True if base units are the same
|
||||||
|
// compatible <=> can be converted to
|
||||||
pub fn compatible_with(&self, other: &Unit) -> bool {
|
pub fn compatible_with(&self, other: &Unit) -> bool {
|
||||||
let s = self.clone() * self.to_base_factor().unit;
|
let s = self.clone() * self.to_base_factor().unit;
|
||||||
let o = other.clone() * other.to_base_factor().unit;
|
let o = other.clone() * other.to_base_factor().unit;
|
||||||
@ -183,6 +184,7 @@ impl Unit {
|
|||||||
return u;
|
return u;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Returns a unit `u` so that `self * u` contains only base units.
|
||||||
pub fn to_base_factor(&self) -> Quantity {
|
pub fn to_base_factor(&self) -> Quantity {
|
||||||
let mut q = Quantity::new_rational(1f64).unwrap();
|
let mut q = Quantity::new_rational(1f64).unwrap();
|
||||||
|
|
||||||
@ -194,6 +196,7 @@ impl Unit {
|
|||||||
return q;
|
return q;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Returns a unit `u` equivalent to `self` that contains only base units.
|
||||||
pub fn to_base(&self) -> Quantity {
|
pub fn to_base(&self) -> Quantity {
|
||||||
let mut q = Quantity::new_rational(1f64).unwrap();
|
let mut q = Quantity::new_rational(1f64).unwrap();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user