Browse Source

mention optimization technique.

Ben Houston 10 years ago
parent
commit
d0dc293c26
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/animation/PropertyBinding.js

+ 1 - 1
src/animation/PropertyBinding.js

@@ -59,7 +59,7 @@ THREE.PropertyBinding.prototype = {
 
 	apply: function() {
 
-		// for speed capture the setter pattern as a closure.
+		// for speed capture the setter pattern as a closure (sort of a memoization pattern: https://en.wikipedia.org/wiki/Memoization)
 		if( ! this.internalApply ) {
 
 			 //console.log( "PropertyBinding.set( " + value + ")" );