pub struct MathPlugin;
Expand description
数学函数插件
提供各种数学运算函数,包括:
- 三角函数:sin, cos, tan, asin, acos, atan, atan2
- 双曲函数:sinh, cosh, tanh
- 指数对数函数:exp, exp2, ln, log10, log2, pow
- 取整函数:floor, ceil, round, trunc
- 绝对值函数:abs (支持多种类型)
- 最值函数:min, max, clamp
- 开方函数:sqrt, cbrt
- 随机数函数:random, randomRange
- 数学常量:PI, E, PHI等
- 其他:factorial, gcd, lcm等
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MathPlugin
impl RefUnwindSafe for MathPlugin
impl Send for MathPlugin
impl Sync for MathPlugin
impl Unpin for MathPlugin
impl UnwindSafe for MathPlugin
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more