diff options
author | Jose Antonio Marquez | 2012-03-09 13:36:41 -0800 |
---|---|---|
committer | Jose Antonio Marquez | 2012-03-09 13:36:41 -0800 |
commit | 9a03f869ff4520431da3ac8c64b748b5fbb60339 (patch) | |
tree | dad948f012cbc7d65e0dccde273667a389ff1c6d /js/helper-classes/backup-delete/GLLight.js | |
parent | b0b4a1ee6792d98f06cbd8ecf5291e66db8a4eef (diff) | |
parent | b4eb2f6cc1208fe5c18aa1f02a85adda25075d81 (diff) | |
download | ninja-9a03f869ff4520431da3ac8c64b748b5fbb60339.tar.gz |
Merge branch 'refs/heads/Ninja-Internal' into Color
Diffstat (limited to 'js/helper-classes/backup-delete/GLLight.js')
-rwxr-xr-x | js/helper-classes/backup-delete/GLLight.js | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/js/helper-classes/backup-delete/GLLight.js b/js/helper-classes/backup-delete/GLLight.js new file mode 100755 index 00000000..2bd5f77e --- /dev/null +++ b/js/helper-classes/backup-delete/GLLight.js | |||
@@ -0,0 +1,30 @@ | |||
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 | /////////////////////////////////////////////////////////////////////// | ||
8 | // Class GLMaterial | ||
9 | // GL representation of a material. | ||
10 | /////////////////////////////////////////////////////////////////////// | ||
11 | function GLLight() | ||
12 | { | ||
13 | /////////////////////////////////////////////////////////////////////// | ||
14 | // Instance variables | ||
15 | /////////////////////////////////////////////////////////////////////// | ||
16 | this._type = 0; | ||
17 | this._color = [0.1, 0.1, 0.1, 1]; | ||
18 | |||
19 | /////////////////////////////////////////////////////////////////////// | ||
20 | // Property Accessors | ||
21 | /////////////////////////////////////////////////////////////////////// | ||
22 | |||
23 | |||
24 | /////////////////////////////////////////////////////////////////////// | ||
25 | // Methods | ||
26 | /////////////////////////////////////////////////////////////////////// | ||
27 | |||
28 | } | ||
29 | |||
30 | |||