Thu, 06 Apr 2017 17:45:36 +0200
bug :)
11 | 1 | # -*- coding: UTF-8 -*- |
2 | ||
2 | 3 | # Durchmesser, Laenge, Volumen und Gewicht der verfuegbaren Tauchflaschen |
4 | CYLINDER = { | |
13
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
11
diff
changeset
|
5 | "03" : [100, 515, 3, 4.7, "Steel, 3ℓ"], |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
11
diff
changeset
|
6 | "05" : [140, 466, 5, 5.7, "Steel, 5ℓ"], |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
11
diff
changeset
|
7 | "07" : [140, 605, 7, 8.8, "Steel, 7ℓ"], |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
11
diff
changeset
|
8 | "08" : [171, 490, 8, 10.4, "Steel, 8ℓ"], |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
11
diff
changeset
|
9 | "10" : [171, 595, 10, 12.4, "Steel, 10ℓ"], |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
11
diff
changeset
|
10 | "12S" : [204, 550, 12, 15.4, "Steel, 12ℓ short"], |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
11
diff
changeset
|
11 | "12L" : [171, 690, 12, 14.5, "Steel, 12ℓ long"], |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
11
diff
changeset
|
12 | "15" : [204, 640, 15, 18.1, "Steel, 15ℓ"], |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
11
diff
changeset
|
13 | "16" : [204, 670, 16, 19.5, "Steel, 16ℓ"], |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
11
diff
changeset
|
14 | "18" : [204, 710, 18, 20.5, "Steel, 18ℓ"], |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
11
diff
changeset
|
15 | "20" : [204, 810, 20, 22.0, "Steel, 20ℓ"], |
2 | 16 | } |
17 | ||
18 | # Standard Rohrdurchmesser (Mr. Baumarkt) | |
19 | PIPES = [ | |
20 | ["DN8", 13.5], | |
21 | ["DN10", 17.2], | |
22 | ["DN15", 21.3], | |
23 | ["DN20", 26.9], | |
24 | ["DN25", 33.7], | |
25 | ["DN32", 42.4], | |
26 | ["DN40", 48.3], | |
27 | ["DN50", 60.3], | |
28 | ["DN65", 76.1], | |
29 | ["DN80", 88.9], | |
30 | ["DN100", 114.3], | |
31 | ["DN125", 139.7], | |
32 | ["DN150", 168.3], | |
9 | 33 | ] |