aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorNivesh Rajbhandari2012-01-30 16:14:43 -0800
committerNivesh Rajbhandari2012-01-30 16:14:43 -0800
commitcbdc001ea4afd054e7a9e1b4e54629254a68376b (patch)
tree50c22cbd6a41ca62e479ce976ddefa3b6df8496d /js
parentb88ebb47d82fc1ffebea49c3bf182aaf3c9419af (diff)
downloadninja-cbdc001ea4afd054e7a9e1b4e54629254a68376b.tar.gz
Removing unused Properties3D file since those values are now saved with the models.
Signed-off-by: Nivesh Rajbhandari <mqg734@motorola.com>
Diffstat (limited to 'js')
-rw-r--r--js/helper-classes/Properties3D.js82
1 files changed, 0 insertions, 82 deletions
diff --git a/js/helper-classes/Properties3D.js b/js/helper-classes/Properties3D.js
deleted file mode 100644
index 42499877..00000000
--- a/js/helper-classes/Properties3D.js
+++ /dev/null
@@ -1,82 +0,0 @@
1/* <copyright>
2This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5</copyright> */
6
7/* Class that holds all 3d properties per element.
8*/
9
10exports.Properties3D = Object.create(Object.prototype, {
11 m_element : {value : null, writable:true, enumerable:true, configurable:true},
12
13// m_upVector : {value : Vector.create( [0,1,0] ), writable: true, enumerable: true, configurable: true},
14 m_azimuth : {value : 0.0, writable: true, enumerable: true, configurable: true},
15 m_altitude : {value : 0.0, writable: true, enumerable: true, configurable: true},
16
17 m_transformCtr : {value : null, writable: true, enumerable: true, configurable: true},
18// m_targetPos : {value : Vector.create( [0,0,0] ), writable: true, enumerable: true, configurable: true},
19
20 m_endAzimuth : {value : 0, writable: true, enumerable: true, configurable: true},
21 m_endAltitude : {value : 0, writable: true, enumerable: true, configurable: true},
22
23// m_objStartPos : {value : Vector.create( [0,0,0] ), writable: true, enumerable: true, configurable: true},
24
25 //TODO - not sure if this should be part of the tool or stage or a utility
26 perspectiveDist : { value : 1400, writable: true, enumerable: true, configurable: true},
27
28 // keep a referenceto the GLWorld (if any)
29 _world : {value : null, writable:true, enumerable:true, configurable:true},
30
31 // keep a flag indicating the element is in the 2D snap cache
32 _eltIsIn2DSnapCache : { value: false, writable: true, enumerable: true, configurable: true},
33
34 Init : {
35 value : function(elt)
36 {
37 this.m_element = elt;
38
39 this.m_azimuth = 0.0;
40 this.m_altitude = 0.0;
41
42 this.m_endAzimuth = 0.0;
43 this.m_endAltitude = 0.0;
44
45// this.m_upVector = Vector.create( [0,1,0] );
46// this.m_viewDir = Vector.create( [0,0,1] );
47// this.m_endUpVector = Vector.create( [0,1,0] );
48
49 this.m_transformCtr = null;
50// this.m_targetPos = Vector.create( [0,0,0] );
51
52// this.m_objStartPos = Vector.create( [0,0,0] );
53
54 this.perspectiveDist = 1400;
55 }
56 },
57
58 ResetRotationValues : {
59 value : function(elt)
60 {
61// this.m_upVector = Vector.create( [0,1,0] );
62// this.m_viewDir = Vector.create( [0,0,1] );
63
64 this.m_azimuth = 0.0;
65 this.m_altitude = 0.0;
66
67 this.m_endAzimuth = 0.0;
68 this.m_endAltitude = 0.0;
69
70 this.m_transformCtr = null;
71// this.m_targetPos = Vector.create( [0,0,0] );
72 }
73 },
74
75 ResetTranslationValues : {
76 value : function(elt)
77 {
78// this.m_objStartPos = Vector.create( [0,0,0] );
79 this.perspectiveDist = 1400;
80 }
81 }
82}); \ No newline at end of file