aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/nav/images/position/position3.pov
blob: f6823ebe9c19baa8efe6a370f6f3d10f250f0435 (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
//
// position3.pov
//
// (c) 2022 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
//
#version 3.7;
#include "common.inc"

dreieck(B, P, C, kugelfarbe)

union {
	punkt(B, fett)
	punkt(C, fett)
	punkt(P, fett)
	pigment {
		color dreieckfarbe
	}
	finish {
		specular 0.95
		metallic
	}
}

union {
	seite(B, C, fett)
	seite(B, P, fett)
	seite(C, P, fett)
	pigment {
		color bekannt
	}
	finish {
		specular 0.95
		metallic
	}
}

union {
	winkel(B, P, C, fein, gross)
	winkel(C, B, P, fein, gross)
	pigment {
		color unbekannt
	}
	finish {
		specular 0.95
		metallic
	}
}