blob: eff62fcff06cc2146df1128259b8294b47e56d6e (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Test translation by NaN and Infinity
// NaN test - cube(2) should not be rendered
cube(1);
angle = asin(1.1);
render()
rotate([0, 0, angle])
cube(2);
// FIXME: how do you test infinity?
|