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

Unified Diff: o3d/samples/o3d-webgl/skin.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 | « o3d/samples/o3d-webgl/param_operation.js ('k') | o3d/samples/o3d-webgl/transform.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: o3d/samples/o3d-webgl/skin.js
diff --git a/o3d/samples/o3d-webgl/skin.js b/o3d/samples/o3d-webgl/skin.js
index ae8893387c46fbd6d5a481adbf539e2e9560ebd4..ea164305b09d76e2e0a81e3c1ded764429d715a4 100644
--- a/o3d/samples/o3d-webgl/skin.js
+++ b/o3d/samples/o3d-webgl/skin.js
@@ -211,14 +211,14 @@ o3d.SkinEval = function() {
* The base matrix to subtract from the matrices before skinning.
* @type {!Array<!Array<number>>}
*/
- this.base = [[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]];
+ this.base = [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]];
/**
* Temporary storage for matrix ops.
* @type {!Array<!Array<number>>}
* @private
*/
- this.temp_matrix_ = [[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]];
+ this.temp_matrix_ = [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]];
/**
* Array of matrices representing each bone.
@@ -487,7 +487,7 @@ o3d.SkinEval.prototype.updateBones_ = function() {
+ " is not a ParamMatrix4");
return;
}
- this.bones_[ii] = [[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]];
+ this.bones_[ii] = [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]];
o3d.Transform.compose(param.value, inverse_bind_pose_array[ii],
this.bones_[ii]);
o3d.Transform.compose(inverse_base, this.bones_[ii], this.bones_[ii]);
« no previous file with comments | « o3d/samples/o3d-webgl/param_operation.js ('k') | o3d/samples/o3d-webgl/transform.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698