mirror of
https://github.com/PaddiM8/kalker.git
synced 2025-01-07 22:19:24 +01:00
Fixed constant rounding
This commit is contained in:
parent
56145c2f45
commit
720a4da283
@ -13,11 +13,11 @@ lazy_static! {
|
|||||||
let mut m = HashMap::new();
|
let mut m = HashMap::new();
|
||||||
m.insert("pi", 3.14159265);
|
m.insert("pi", 3.14159265);
|
||||||
m.insert("π", 3.14159265);
|
m.insert("π", 3.14159265);
|
||||||
m.insert("e", 2.71828182);
|
m.insert("e", 2.71828183);
|
||||||
m.insert("tau", 6.28318530);
|
m.insert("tau", 6.28318530);
|
||||||
m.insert("τ", 6.28318530);
|
m.insert("τ", 6.28318530);
|
||||||
m.insert("phi", 1.61803398);
|
m.insert("phi", 1.61803399);
|
||||||
m.insert("ϕ", 1.61803398);
|
m.insert("ϕ", 1.61803399);
|
||||||
m
|
m
|
||||||
};
|
};
|
||||||
pub static ref UNARY_FUNCS: HashMap<&'static str, (UnaryFuncInfo, &'static str)> = {
|
pub static ref UNARY_FUNCS: HashMap<&'static str, (UnaryFuncInfo, &'static str)> = {
|
||||||
|
Loading…
Reference in New Issue
Block a user