From b89a7ee8b956c96a1dcee995ea840feddc5d4b27 Mon Sep 17 00:00:00 2001 From: Pierre Frisch Date: Thu, 22 Dec 2011 07:25:50 -0800 Subject: First commit of Ninja to ninja-internal Signed-off-by: Valerio Virgillito --- js/helper-classes/3D/vec-utils.js | 199 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 199 insertions(+) create mode 100644 js/helper-classes/3D/vec-utils.js (limited to 'js/helper-classes/3D/vec-utils.js') diff --git a/js/helper-classes/3D/vec-utils.js b/js/helper-classes/3D/vec-utils.js new file mode 100644 index 00000000..ceff4f64 --- /dev/null +++ b/js/helper-classes/3D/vec-utils.js @@ -0,0 +1,199 @@ +/* +This file contains proprietary software owned by Motorola Mobility, Inc.
+No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.
+(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. +
*/ + +/////////////////////////////////////////////////////////////////////// +// Class Utils +// Vector Utility functions +/////////////////////////////////////////////////////////////////////// +var VecUtils = exports.VecUtils = Object.create(Object.prototype, +{ + /////////////////////////////////////////////////////////////////////// + // Instance variables + /////////////////////////////////////////////////////////////////////// + + /////////////////////////////////////////////////////////////////////// + // Property accessors + /////////////////////////////////////////////////////////////////////// + + /////////////////////////////////////////////////////////////////////// + // Vector Methods + /////////////////////////////////////////////////////////////////////// + vecNormalize: { + value: function(dimen, vec, lenToMake) { + var rtnVec; + try + { + var len = 1.0 + var nArgs = arguments.length; + if (nArgs > 2) + len = lenToMake; + + var sum = 0.0; + for (var i=0; i