diff options
23 files changed, 0 insertions, 2725 deletions
diff --git a/node_modules/ninja-components/effect/desaturate-effect.js b/node_modules/ninja-components/effect/desaturate-effect.js deleted file mode 100755 index defa1973..00000000 --- a/node_modules/ninja-components/effect/desaturate-effect.js +++ /dev/null | |||
@@ -1,25 +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 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.DesaturateEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function(pixels, pixelCount) { | ||
13 | var i = 0, | ||
14 | average; | ||
15 | |||
16 | for (i = 0; i < pixelCount; i += 4) { | ||
17 | average = (pixels[i] + pixels[i+1] + pixels[i+2])/ 3; | ||
18 | pixels[i] = average; | ||
19 | pixels[i+1] = average; | ||
20 | pixels[i+2] = average; | ||
21 | } | ||
22 | } | ||
23 | } | ||
24 | |||
25 | }); | ||
diff --git a/node_modules/ninja-components/effect/effect.js b/node_modules/ninja-components/effect/effect.js deleted file mode 100755 index 4c5bb52c..00000000 --- a/node_modules/ninja-components/effect/effect.js +++ /dev/null | |||
@@ -1,15 +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 | var Montage = require("montage").Montage; | ||
7 | |||
8 | var Effect = exports.Effect = Montage.create(Montage, { | ||
9 | |||
10 | applyEffect: { | ||
11 | enumerable: false, | ||
12 | value: null | ||
13 | } | ||
14 | |||
15 | }); | ||
diff --git a/node_modules/ninja-components/effect/invert-effect.js b/node_modules/ninja-components/effect/invert-effect.js deleted file mode 100755 index d5a3f7cf..00000000 --- a/node_modules/ninja-components/effect/invert-effect.js +++ /dev/null | |||
@@ -1,23 +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 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.InvertEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function(pixels, pixelCount) { | ||
13 | var i; | ||
14 | |||
15 | for (i = 0; i < pixelCount; i += 4) { | ||
16 | pixels[i] = 255 - pixels[i]; | ||
17 | pixels[i+1] = 255 - pixels[i+1]; | ||
18 | pixels[i+2] = 255 - pixels[i+2]; | ||
19 | } | ||
20 | } | ||
21 | } | ||
22 | |||
23 | }); | ||
diff --git a/node_modules/ninja-components/effect/kaliedoscope-effect.js b/node_modules/ninja-components/effect/kaliedoscope-effect.js deleted file mode 100755 index 38462602..00000000 --- a/node_modules/ninja-components/effect/kaliedoscope-effect.js +++ /dev/null | |||
@@ -1,17 +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 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.KaliedoscopeEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function() { | ||
13 | console.log("kaliedoscope") | ||
14 | } | ||
15 | } | ||
16 | |||
17 | }); | ||
diff --git a/node_modules/ninja-components/effect/multiply-effect.js b/node_modules/ninja-components/effect/multiply-effect.js deleted file mode 100755 index b8599668..00000000 --- a/node_modules/ninja-components/effect/multiply-effect.js +++ /dev/null | |||
@@ -1,23 +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 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.MultiplyEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function(pixels, pixelCount, multiplier) { | ||
13 | var i = 0; | ||
14 | |||
15 | for (i = 0; i < pixelCount; i += 4) { | ||
16 | pixels[i ] = pixels[i ] * multiplier; // red | ||
17 | pixels[i+1] = pixels[i+1] * multiplier; // green | ||
18 | pixels[i+2] = pixels[i+2] * multiplier; // blue | ||
19 | } | ||
20 | } | ||
21 | } | ||
22 | |||
23 | }); | ||
diff --git a/node_modules/ninja-components/effect/sepia-effect.js b/node_modules/ninja-components/effect/sepia-effect.js deleted file mode 100755 index 779074b7..00000000 --- a/node_modules/ninja-components/effect/sepia-effect.js +++ /dev/null | |||
@@ -1,25 +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 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.SepiaEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function(pixels, pixelCount) { | ||
13 | var i = 0, | ||
14 | average; | ||
15 | |||
16 | for (i = 0; i < pixelCount; i += 4) { | ||
17 | average = (pixels[i ] + pixels[i+1] + pixels[i+2])/ 3; | ||
18 | pixels[i ] = average + 10; // red | ||
19 | pixels[i+1] = average; // green | ||
20 | pixels[i+2] = average; // blue | ||
21 | } | ||
22 | } | ||
23 | } | ||
24 | |||
25 | }); | ||
diff --git a/node_modules/ninja-components/flow-controller.reel/flow-controller.html b/node_modules/ninja-components/flow-controller.reel/flow-controller.html deleted file mode 100644 index da2fae62..00000000 --- a/node_modules/ninja-components/flow-controller.reel/flow-controller.html +++ /dev/null | |||
@@ -1,275 +0,0 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!-- <copyright> | ||
3 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
4 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
6 | </copyright> --> | ||
7 | <html> | ||
8 | <head> | ||
9 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
10 | <script type="text/montage-serialization"> | ||
11 | { | ||
12 | "image1": { | ||
13 | "module": "montage/ui/image3d.reel", | ||
14 | "name": "Image3D", | ||
15 | "properties": { | ||
16 | "element": {"#": "image"} | ||
17 | }, | ||
18 | "bindings": { | ||
19 | "data": { | ||
20 | "boundObject": {"@": "flow1"}, | ||
21 | "boundObjectPropertyPath": "objectAtCurrentIteration", | ||
22 | "oneway": true | ||
23 | } | ||
24 | } | ||
25 | }, | ||
26 | "scroll1": { | ||
27 | "module": "montage/ui/scroll", | ||
28 | "name": "Scroll", | ||
29 | "properties": { | ||
30 | "pointerSpeedMultiplier": 1, | ||
31 | "component": {"@": "offset"} | ||
32 | }, | ||
33 | "bindings": { | ||
34 |