blob: b647d08d11eba9ae3edeb799a04376dbe8c39524 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Test translation by NaN and Infinity
// cube()s should not be rendered
// NaN
sphere();
rotate([0, 0, asin(1.1) ]) cube();
// Infinity
translate([4,0,0]) {
sphere();
rotate([0, 0, 1/0]) cube();
}
|