1
+ /* This Source Code Form is subject to the terms of the Mozilla Public
2
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
3
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
+ *
5
+ * Software distributed under the License is distributed on an "AS IS" basis,
6
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
7
+ * for the specific language governing rights and limitations under the License.
8
+ *
9
+ * The Initial Developer is Terravolv, Inc. Portions created by the Initial
10
+ * Developer are Copyright (C) 2014-2015 the Initial Developer. All Rights Reserved.
11
+ */
12
+
13
+ /**
14
+ * @date May 28, 2015
15
+ * @public
16
+ */
17
+
18
+ var Geometry = function ( ) {
19
+
20
+ // Privates
21
+ var _x = null ;
22
+ var _y = null ;
23
+ var _z = null ;
24
+ var _t = null ;
25
+ var _propertyName = null ;
26
+ var _breaks = null ;
27
+ var _object = null ;
28
+
29
+ this . getPropertyName = function ( ) {
30
+ return _propertyName ;
31
+ }
32
+
33
+ this . setPropertyName = function ( pn ) {
34
+ _propertyName = pn ;
35
+ }
36
+
37
+ this . getT = function ( ) {
38
+ return _t ;
39
+ }
40
+
41
+ this . setT = function ( t ) {
42
+ _t = t ;
43
+ }
44
+
45
+ this . getX = function ( ) {
46
+ return _x ;
47
+ }
48
+
49
+ this . setX = function ( x ) {
50
+ _x = x ;
51
+ }
52
+
53
+ this . getY = function ( ) {
54
+ return _y ;
55
+ }
56
+
57
+ this . setY = function ( y ) {
58
+ _y = y ;
59
+ }
60
+
61
+ this . getZ = function ( ) {
62
+ return _z ;
63
+ }
64
+
65
+ this . setZ = function ( z ) {
66
+ _z = z ;
67
+ }
68
+
69
+ this . getBreaks = function ( ) {
70
+ return _breaks ;
71
+ }
72
+
73
+ this . setBreaks = function ( b ) {
74
+ _breaks = b ;
75
+ }
76
+
77
+ this . getObject = function ( ) {
78
+ return _object ;
79
+ }
80
+
81
+ this . setObject = function ( o ) {
82
+ _object = o ;
83
+ }
84
+
85
+ return this ;
86
+
87
+ } // Geometry
0 commit comments