5 个不稳定版本
使用旧的 Rust 2015
0.3.0 | 2022 年 8 月 30 日 |
---|---|
0.2.1 | 2018 年 6 月 2 日 |
0.2.0 | 2017 年 5 月 22 日 |
0.1.1 | 2016 年 5 月 27 日 |
0.1.0 | 2016 年 4 月 26 日 |
在 算法 中排名第 294
每月下载量 29,021
在 12 个包(7 个直接)中使用
28KB
713 行
rust-easing
实现 Robert Penner 缓动函数的小型 Rust 库。
使用方法
将此添加到您的 Cargo.toml 文件中
[dependencies]
easer = "0.2.1"
将此添加到代码文件顶部
extern crate easer
示例
use easer::functions::*;
let mut y: [f64; 100] = [0.0; 100];
for i in 0..100 {
y[i] = i as f64;
}
println!("Before {:?}", &y[..]);
y.iter_mut().map(|a| *a = Back::ease_in(*a, 0.0, 100.0, 100.0)).count();
println!("After {:?}", &y[..]);
依赖项
~215KB