Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(316)

Unified Diff: o3d/samples/o3d-webgl/curve.js

Issue 3029050: o3d-webgl: Added remaining param_operation classes. (Closed)
Patch Set: make sure nothing changed Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | o3d/samples/o3d-webgl/param_operation.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: o3d/samples/o3d-webgl/curve.js
diff --git a/o3d/samples/o3d-webgl/curve.js b/o3d/samples/o3d-webgl/curve.js
index 54c76f59ca75700775db93d50d75f0c287d5f0c1..6425fbb57c6a42e3bea1fad9924e3f2cb65303c7 100644
--- a/o3d/samples/o3d-webgl/curve.js
+++ b/o3d/samples/o3d-webgl/curve.js
@@ -584,7 +584,7 @@ o3d.Curve.prototype.addBezierKeys = function(values) {
"addBezierKeys: expected multiple of 6 values got "+values.size());
return;
}
- for (var ii = 0; ii < values.length; ii += kNumBezierKeyValues) {
+ for (var i = 0; i < values.length; i += kNumBezierKeyValues) {
var newKey = this.createKey("BezierCurveKey");
newKey.input = values[i];
newKey.output = values[i+1];
« no previous file with comments | « no previous file | o3d/samples/o3d-webgl/param_operation.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698