diff options
author | Valerio Virgillito | 2012-02-03 12:20:10 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-02-03 12:20:10 -0800 |
commit | e6e539f345f5e1ac36a595db5d1a1c3700715e88 (patch) | |
tree | 39846bf1570f9b5a4057b726c54905de9e9e1c02 /js/helper-classes/Properties3D.js | |
parent | 7950424cf704bb221971f4645406b01e6979db18 (diff) | |
parent | c630ead20487c3948fa36448d3e7d5f7b5cba782 (diff) | |
download | ninja-e6e539f345f5e1ac36a595db5d1a1c3700715e88.tar.gz |
Merge branch 'master' into components
Conflicts:
node_modules/montage/ui/bluemoon/progress.reel/progress.html
node_modules/montage/ui/image2.reel/image2.html
node_modules/ninja-components/effect/desaturate-effect.js
node_modules/ninja-components/effect/effect.js
node_modules/ninja-components/effect/invert-effect.js
node_modules/ninja-components/effect/kaliedoscope-effect.js
node_modules/ninja-components/effect/multiply-effect.js
node_modules/ninja-components/effect/sepia-effect.js
node_modules/ninja-components/flow-controller.reel/flow-controller.html
node_modules/ninja-components/flow-controller.reel/flow-controller.js
node_modules/ninja-components/flow-offset.js
node_modules/ninja-components/hottext.reel/hottext.css
node_modules/ninja-components/hottext.reel/hottext.html
node_modules/ninja-components/hottext.reel/hottext.js
node_modules/ninja-components/hottextunit.reel/hottextunit.css
node_modules/ninja-components/hottextunit.reel/hottextunit.html
node_modules/ninja-components/hottextunit.reel/hottextunit.js
node_modules/ninja-components/image2.reel/image2.html
node_modules/ninja-components/image2.reel/image2.js
node_modules/ninja-components/image3d.reel/image3d.html
node_modules/ninja-components/image3d.reel/image3d.js
node_modules/ninja-components/photo-editor.reel/photo-editor.css
node_modules/ninja-components/photo-editor.reel/photo-editor.html
node_modules/ninja-components/photo-editor.reel/photo-editor.js
node_modules/ninja-components/slider-base.js
user-document-templates/montage-application-cloud/appdelegate.js
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
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 | ||