rename a_version.alpha to a_version.alpha_
[liba.git] / tests / trajpoly7.rs
blob43425f09edf587ebf5076cfbc797d6d8e1d92c22
1 #[test]
2 fn trajpoly7() {
3     let x = 0.5;
4     {
5         let mut traj = liba::trajpoly7::new(1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0);
6         std::println!(
7             "[{}, {}, {}, {}]",
8             traj.pos(x),
9             traj.vel(x),
10             traj.acc(x),
11             traj.jer(x)
12         );
13     }