aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/95-homologie/torus/torus.pov
blob: 1c507f8f73d9891d06e81ec7aa192979d6b35d7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//
// torus.pov
//
// (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
//
#version 3.7;
#include "colors.inc"

global_settings {
        assumed_gamma 1
}

#declare imagescale = 0.1;
#declare r = 0.04;

camera {
        location <43, 25, 20>
        look_at <0, 0, 0>
        right 16/9 * x * imagescale
        up y * imagescale
}

light_source {
        <10, 20, 0> color White
        area_light <1,0,0> <0,0,1>, 10, 10
        adaptive 1
        jitter
}

sky_sphere {
        pigment {
                color rgb<1,1,1>
        }
}

#include "torus.inc"

object {
	torusflaeche()
	pigment {
		color rgbt<0.8,0.8,0.8,0.3>
	}
	finish {
		specular 0.9
		metallic
	}
}

object {
	zyklus1()
	pigment {
		color rgb<1.0,0.2,0.2>
	}
	finish {
		specular 0.9
		metallic
	}
}

object {
	zyklus2()
	pigment {
		color rgb<0.2,0.2,1.0>
	}
	finish {
		specular 0.9
		metallic
	}
}

object {
	triangulation()
	pigment {
		color rgb<0.8,0.6,0.4>
	}
	finish {
		specular 0.9
		metallic
	}
}