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

dreieck(A, B, P, kugelfarbe)

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

union {
	seite(A, P, fett)
	pigment {
		color unbekannt
	}
	finish {
		specular 0.95
		metallic
	}
}


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

object {
	winkel(B, P, A, fein, gross)
	pigment {
		color bekannt
	}
	finish {
		specular 0.95
		metallic
	}
}

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