-
Notifications
You must be signed in to change notification settings - Fork 25
/
right_scale.py
73 lines (67 loc) · 3.95 KB
/
right_scale.py
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
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
from mathutils import Vector
def make():
'''Makes the right_scale dictionary to fix scaling'''
right_scale = {}
right_scale['Mark1Cockpit'] = Vector((1.25,1.25,1.25))
right_scale['Mark2Cockpit'] = Vector((1.25,1.25,1.25))
right_scale['fuelTank'] = Vector((1.25,1.25,1.25))
right_scale['fuelTankSmall'] = Vector((1.25,1.25,1.25))
right_scale['fuelTank.long'] = Vector((1.25,1.25,1.25))
right_scale['fuelTank_long'] = Vector((1.25,1.25,1.25))
right_scale['noseConeAdapter'] = Vector((1.25,1.25,1.25))
right_scale['standardNoseCone'] = Vector((1.25,1.25,1.25))
right_scale['liquidEngine'] = Vector((1.25,1.25,1.25))
right_scale['liquidEngine2'] = Vector((1.25,1.25,1.25))
right_scale['liquidEngine3'] = Vector((1.25,1.25,1.25))
right_scale['science.module'] = Vector((1.25,1.25,1.25))
right_scale['fuelTank.long'] = Vector((1.25,1.25,1.25))
right_scale['Mk1Fuselage'] = Vector((1.25,1.25,1.25))
right_scale['Mk1FuselageStructural'] = Vector((1.25,1.25,1.25))
right_scale['Mk1IntakeFuselage'] = Vector((1.25,1.25,1.25))
right_scale['nacelleBody'] = Vector((1.25,1.25,1.25))
right_scale['radialEngineBody'] = Vector((1.25,1.25,1.25))
right_scale['turboFanEngine'] = Vector((1.25,1.25,1.25))
right_scale['CircularIntake'] = Vector((1.25,1.25,1.25))
right_scale['toroidalAerospike'] = Vector((1.25,1.25,1.25))
right_scale['ramAirIntake'] = Vector((1.25,1.25,1.25))
right_scale['JetEngine'] = Vector((1.25,1.25,1.25))
right_scale['RAPIER'] = Vector((1.25,1.25,1.25))
right_scale['winglet'] = Vector((1.25,1.25,1.25))
right_scale['R8winglet'] = Vector((1.25,1.25,1.25))
right_scale['solidBooster'] = Vector((1.25,1.25,1.25))
#Kethane
right_scale['kethane.1m.converter'] = Vector((1.25,1.25,1.25))
right_scale['kethane.2m.converter'] = Vector((1.25,1.25,1.25))
right_scale['kethane.generator'] = Vector((.666,.666,.666))
right_scale['kethane.heavyDrill'] = Vector((.00625,.00625,.00625))
right_scale['kethane.highGain'] = Vector((1.5,1.5,1.5))
right_scale['kethane.kerbalBlender'] = Vector((1.25,1.25,1.25))
#right_scale['kethane.radialDrill'] = Vector(())
right_scale['kethane.sensor.1m'] = Vector((1.25,1.25,1.25))
right_scale['kethane.smallDrill'] = Vector((.02,.02,.02))
#right_scale['kethane.tank1mLarge'] = Vector(())
right_scale['kethane.tank1mStandard'] = Vector((.0125,.0125,.0125))
right_scale['kethane.tank2mExtralarge'] = Vector((1.2,1.2,1.2))
right_scale['kethane.tank2mLarge'] = Vector((1.2,1.2,1.2))
right_scale['kethane.tank2mMedium'] = Vector((1.2,1.2,1.2))
right_scale['kethane.tank2mSmall'] = Vector((1.2,1.2,1.2))
right_scale['kethane.tankExternal'] = Vector((1.25,1.25,1.25))
right_scale['kethane.turbine'] = Vector((.666,.666,.666))
return right_scale