blob: 45922ddca6a7f34f4cf7ae553cf88ad03e38b3bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
// example010.dat generated using octave:
//   d = (sin(1:0.2:10)' * cos(1:0.2:10)) * 10;
//   save("example010.dat", "d");
intersection()
{
	surface(file = "example010.dat",
		center = true, convexity = 5);
	
	rotate(45, [0, 0, 1])
	surface(file = "example010.dat",
		center = true, convexity = 5);
}
  |