rust
let unit = EngUnit::from_unit(Unit::Meter, 1.0);
println!({unit});
1 m
rust
let unit = EngUnit::from_unit(Unit::Meter, 1.0);
unit.change_unit(Unit::Millimeter);
println!({unit});
1000 mm
rust
println!({unit});
1000 mm
rust
let unit = EngUnit::from_unit(Unit::Meter, 1.0);
let unit_2 = unit + 2;
println!({unit_2});
3 m
rust
let unit_1 = EngUnit::from_unit(Unit::Meter, 100.0);
let unit_2 = EngUnit::from_unit(Unit::Kilometer, 1.0);
let unit_3 = unit_2 + unit_1;
println!({unit_3});
1.1 km
rust
let unit_1 = EngUnit::from_unit(Unit::Millimeter, 1000.0);
let unit_2 = 2 * unit;
println!({unit_2});
2000 mm
rust
let unit_1 = EngUnit::from_unit(Unit::Meter, 100.0);
let unit_2 = EngUnit::from_unit(Unit::Centimeter, 500.0);
let unit_3 = unit_1 * unit_2;
println!({unit_3});
500 m^2
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.