diff options
author | Armen Kesablyan | 2012-02-07 16:55:34 -0800 |
---|---|---|
committer | Armen Kesablyan | 2012-02-07 16:55:34 -0800 |
commit | 10f0ad4c15f090b2d0d50d11e4c7aaf291e9eb0e (patch) | |
tree | 12b31910a3c7c7fa2ee0b26d8aaa611710e139a5 /js/helper-classes/Properties3D.js | |
parent | 7f8730c3add146f1ba107e6fc22d1f5a8348ed8b (diff) | |
parent | 668510892537eaaeb2e11520831d87b44b2489b7 (diff) | |
download | ninja-10f0ad4c15f090b2d0d50d11e4c7aaf291e9eb0e.tar.gz |
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal into text-tool
Conflicts:
_scss/compass_app_log.txt
css/ninja.css
Diffstat (limited to 'js/helper-classes/Properties3D.js')
-rw-r--r-- | js/helper-classes/Properties3D.js | 82 |
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> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No 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 | |||
10 | exports.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 | ||