From 22cbc9644b79df60b3f6336f9563debd47fb3ea1 Mon Sep 17 00:00:00 2001 From: hwc487 Date: Thu, 28 Jun 2012 11:44:15 -0700 Subject: Added capability to split a mesh into multiiple parts to avoid buffer overflow situations. --- js/lib/rdge/materials/taper-material.js | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) (limited to 'js/lib/rdge/materials/taper-material.js') diff --git a/js/lib/rdge/materials/taper-material.js b/js/lib/rdge/materials/taper-material.js index f6aa782c..595f5064 100644 --- a/js/lib/rdge/materials/taper-material.js +++ b/js/lib/rdge/materials/taper-material.js @@ -38,6 +38,8 @@ var TaperMaterial = function TaperMaterial() this._hasVertexDeformation = true; this._vertexDeformationTolerance = 0.02; // should be a property + this.getVertexDeformationTolerance = function() { return this._propValues[this._propNames[7]]; }; + /////////////////////////////////////////////////////////////////////// // Methods /////////////////////////////////////////////////////////////////////// @@ -62,13 +64,30 @@ var TaperMaterial = function TaperMaterial() this.setShaderValues(); }; + this.resetToDefault = function() + { + this._propValues[this._propNames[0]] = 0.25; + this._propValues[this._propNames[1]] = 0.50; + this._propValues[this._propNames[2]] = 0.75; + this._propValues[this._propNames[3]] = -1; + this._propValues[this._propNames[4]] = 1; + this._propValues[this._propNames[5]] = 0.0; + this._propValues[this._propNames[6]] = 0.9; + this._propValues[this._propNames[7]] = this._vertexDeformationTolerance; + this._propValues[this._propNames[8]] = 1.0; + + var nProps = this._propNames.length; + for (var i=0; i -Copyright (c) 2012, Motorola Mobility, Inc +Copyright (c) 2012, Motorola Mobility LLC. All Rights Reserved. -BSD License. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - Neither the name of Motorola Mobility nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of Motorola Mobility LLC nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- cgit v1.2.3 From 67dd4bdd47a0324507bed232d22068aa198549fe Mon Sep 17 00:00:00 2001 From: hwc487 Date: Wed, 11 Jul 2012 09:48:19 -0700 Subject: re-wrote the radial blur shader. Changed tolerances in the deformation shaders. --- js/lib/rdge/materials/taper-material.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'js/lib/rdge/materials/taper-material.js') diff --git a/js/lib/rdge/materials/taper-material.js b/js/lib/rdge/materials/taper-material.js index 73e344d5..929dffa6 100644 --- a/js/lib/rdge/materials/taper-material.js +++ b/js/lib/rdge/materials/taper-material.js @@ -61,7 +61,7 @@ var TaperMaterial = function TaperMaterial() this.hasVertexDeformation = function () { return this._hasVertexDeformation; }; this._hasVertexDeformation = true; - this._vertexDeformationTolerance = 0.02; // should be a property + this._vertexDeformationTolerance = 0.1; // should be a property this.getVertexDeformationTolerance = function() { return this._propValues[this._propNames[7]]; }; -- cgit v1.2.3