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
fix emscripten builds on windows
[liba.git]
/
tests
/
trajpoly5.rs
blob
51fe2b8d396e86d30cd4528b5c4f6ccaa4b79a8f
1
#[test]
2
fn trajpoly5() {
3
let x = 0.5;
4
{
5
let mut traj = liba::trajpoly5::new(1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0);
6
std::println!("[{}, {}, {}]", traj.pos(x), traj.vel(x), traj.acc(x));
7
}
8
}