data.py

Wed, 05 Apr 2017 00:39:31 +0200

author
mdd
date
Wed, 05 Apr 2017 00:39:31 +0200
changeset 13
39fb313ba27c
parent 11
098335a1d510
permissions
-rw-r--r--

finished viewer again, giving up with texturing mesh without uv mapping

11
098335a1d510 web viewer 3d finished
mdd
parents: 10
diff changeset
1 # -*- coding: UTF-8 -*-
098335a1d510 web viewer 3d finished
mdd
parents: 10
diff changeset
2
2
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
3 # Durchmesser, Laenge, Volumen und Gewicht der verfuegbaren Tauchflaschen
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
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
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
16 }
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
17
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
18 # Standard Rohrdurchmesser (Mr. Baumarkt)
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
19 PIPES = [
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
20 ["DN8", 13.5],
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
21 ["DN10", 17.2],
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
22 ["DN15", 21.3],
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
23 ["DN20", 26.9],
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
24 ["DN25", 33.7],
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
25 ["DN32", 42.4],
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
26 ["DN40", 48.3],
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
27 ["DN50", 60.3],
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
28 ["DN65", 76.1],
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
29 ["DN80", 88.9],
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
30 ["DN100", 114.3],
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
31 ["DN125", 139.7],
9ec8fa3d0348 cleanup
mdd
parents:
diff changeset
32 ["DN150", 168.3],
9
a01a3fd32073 precompile STL files with openscad
mdd
parents: 2
diff changeset
33 ]

mercurial