repo.or.cz
/
liba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
rename a_version.alpha to a_version.alpha_
[liba.git]
/
tests
/
trajpoly7.rs
blob
43425f09edf587ebf5076cfbc797d6d8e1d92c22
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
}
14
}