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