aboutsummaryrefslogtreecommitdiff
path: root/js/helper-classes/Properties3D.js
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-02-02 18:00:45 -0800
committerJose Antonio Marquez2012-02-02 18:00:45 -0800
commit04d89daed90c35a4393773ca2e2d0ac3a4c15cd4 (patch)
treed0041abc7379ef38b20cce148e5dea6f531b8569 /js/helper-classes/Properties3D.js
parent4d8306b638c53899403a4f0328c02bf1ab893e8f (diff)
parentc630ead20487c3948fa36448d3e7d5f7b5cba782 (diff)
downloadninja-04d89daed90c35a4393773ca2e2d0ac3a4c15cd4.tar.gz
Merge branch 'refs/heads/NinjaInternal' into FileIO
Conflicts: .gitignore js/ninja.reel/ninja.js
Diffstat (limited to 'js/helper-classes/Properties3D.js')
-rwxr-xr-xjs/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 100755
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