OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2010, Google Inc. | 2 * Copyright 2010, Google Inc. |
3 * All rights reserved. | 3 * All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 o3d.notImplemented(); | 218 o3d.notImplemented(); |
219 }; | 219 }; |
220 | 220 |
221 /** | 221 /** |
222 * Evaluates and returns the current world matrix. | 222 * Evaluates and returns the current world matrix. |
223 * | 223 * |
224 * The updated world matrix. | 224 * The updated world matrix. |
225 */ | 225 */ |
226 o3d.Transform.prototype.getUpdatedWorldMatrix = | 226 o3d.Transform.prototype.getUpdatedWorldMatrix = |
227 function() { | 227 function() { |
228 o3d.notImplemented(); | 228 var parentWorldMatrix; |
| 229 if (!this.parent) { |
| 230 parentWorldMatrix = |
| 231 [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]]; |
| 232 } else { |
| 233 parentWorldMatrix = this.parent.getUpdatedWorldMatrix(); |
| 234 } |
| 235 o3d.Transform.compose(parentWorldMatrix, this.localMatrix, this.worldMatrix); |
| 236 return this.worldMatrix; |
229 }; | 237 }; |
230 | 238 |
231 | 239 |
232 /** | 240 /** |
233 * Adds a shape do this transform. | 241 * Adds a shape do this transform. |
234 * @param {o3d.Shape} shape Shape to add. | 242 * @param {o3d.Shape} shape Shape to add. |
235 */ | 243 */ |
236 o3d.Transform.prototype.addShape = | 244 o3d.Transform.prototype.addShape = |
237 function(shape) { | 245 function(shape) { |
238 this.shapes.push(shape); | 246 this.shapes.push(shape); |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
584 c * m11 + s * m21, | 592 c * m11 + s * m21, |
585 c * m12 + s * m22, | 593 c * m12 + s * m22, |
586 c * m13 + s * m23); | 594 c * m13 + s * m23); |
587 m2.splice(0, 4, c * m20 - s * m10, | 595 m2.splice(0, 4, c * m20 - s * m10, |
588 c * m21 - s * m11, | 596 c * m21 - s * m11, |
589 c * m22 - s * m12, | 597 c * m22 - s * m12, |
590 c * m23 - s * m13); | 598 c * m23 - s * m13); |
591 }; | 599 }; |
592 | 600 |
593 | 601 |
| 602 |
| 603 /** |
| 604 * Takes a 4-by-4 matrix and a vector with 3 entries, |
| 605 * interprets the vector as a point, transforms that point by the matrix, and |
| 606 * returns the result as a vector with 3 entries. |
| 607 * @param {!o3djs.math.Matrix4} m The matrix. |
| 608 * @param {!o3djs.math.Vector3} v The point. |
| 609 * @return {!o3djs.math.Vector3} The transformed point. |
| 610 */ |
| 611 o3d.Transform.transformPoint = function(m, v) { |
| 612 var v0 = v[0]; |
| 613 var v1 = v[1]; |
| 614 var v2 = v[2]; |
| 615 |
| 616 if (!m) { |
| 617 debugger; |
| 618 } |
| 619 |
| 620 var m0 = m[0]; |
| 621 var m1 = m[1]; |
| 622 var m2 = m[2]; |
| 623 var m3 = m[3]; |
| 624 |
| 625 var d = v0 * m0[3] + v1 * m1[3] + v2 * m2[3] + m3[3]; |
| 626 return [(v0 * m0[0] + v1 * m1[0] + v2 * m2[0] + m3[0]) / d, |
| 627 (v0 * m0[1] + v1 * m1[1] + v2 * m2[1] + m3[1]) / d, |
| 628 (v0 * m0[2] + v1 * m1[2] + v2 * m2[2] + m3[2]) / d]; |
| 629 }; |
| 630 |
| 631 |
| 632 |
594 /** | 633 /** |
595 * Pre-composes the local matrix of this Transform with a rotation about the | 634 * Pre-composes the local matrix of this Transform with a rotation about the |
596 * y-axis. For example, if the local matrix is a translation, the new local | 635 * y-axis. For example, if the local matrix is a translation, the new local |
597 * matrix will rotate around the y-axis and then translate. | 636 * matrix will rotate around the y-axis and then translate. |
598 * | 637 * |
599 * @param {number} radians The number of radians to rotate around y-axis. | 638 * @param {number} radians The number of radians to rotate around y-axis. |
600 */ | 639 */ |
601 o3d.Transform.prototype.rotateY = | 640 o3d.Transform.prototype.rotateY = |
602 function(angle) { | 641 function(angle) { |
603 var m = this.localMatrix; | 642 var m = this.localMatrix; |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
919 | 958 |
920 /** | 959 /** |
921 * Traverses the transform tree starting at this node and adds DrawElements | 960 * Traverses the transform tree starting at this node and adds DrawElements |
922 * for each shape to DrawList. | 961 * for each shape to DrawList. |
923 * @param {Array.<Object>} drawListInfos A list of objects containing a draw | 962 * @param {Array.<Object>} drawListInfos A list of objects containing a draw |
924 * list and matrix information. | 963 * list and matrix information. |
925 * @param {o3d.math.Matrix4} opt_parentWorldMatrix | 964 * @param {o3d.math.Matrix4} opt_parentWorldMatrix |
926 */ | 965 */ |
927 o3d.Transform.prototype.traverse = | 966 o3d.Transform.prototype.traverse = |
928 function(drawListInfos, opt_parentWorldMatrix) { | 967 function(drawListInfos, opt_parentWorldMatrix) { |
929 if (!this.visible) { | 968 |
| 969 this.gl.client.render_stats_['transformsProcessed']++; |
| 970 if (drawListInfos.length == 0 || !this.visible) { |
930 return; | 971 return; |
931 } | 972 } |
932 opt_parentWorldMatrix = | 973 opt_parentWorldMatrix = |
933 opt_parentWorldMatrix || | 974 opt_parentWorldMatrix || |
934 [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]]; | 975 [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]]; |
935 | 976 |
936 o3d.Transform.compose( | 977 o3d.Transform.compose( |
937 opt_parentWorldMatrix, this.localMatrix, this.worldMatrix); | 978 opt_parentWorldMatrix, this.localMatrix, this.worldMatrix); |
938 | 979 |
| 980 var remainingDrawListInfos = []; |
| 981 |
| 982 if (this.cull) { |
| 983 if (this.boundingBox) { |
| 984 for (var i = 0; i < drawListInfos.length; ++i) { |
| 985 var drawListInfo = drawListInfos[i]; |
| 986 |
| 987 var worldViewProjection = [[], [], [], []]; |
| 988 o3d.Transform.compose(drawListInfo.context.view, |
| 989 this.worldMatrix, worldViewProjection); |
| 990 o3d.Transform.compose(drawListInfo.context.projection, |
| 991 worldViewProjection, worldViewProjection); |
| 992 |
| 993 if (this.boundingBox.inFrustum(worldViewProjection)) { |
| 994 remainingDrawListInfos.push(drawListInfo); |
| 995 } |
| 996 } |
| 997 } |
| 998 } else { |
| 999 remainingDrawListInfos = drawListInfos; |
| 1000 } |
| 1001 |
| 1002 if (remainingDrawListInfos.length == 0) { |
| 1003 this.gl.client.render_stats_['transformsCulled']++; |
| 1004 return; |
| 1005 } |
| 1006 |
939 var children = this.children; | 1007 var children = this.children; |
940 var shapes = this.shapes; | 1008 var shapes = this.shapes; |
941 | 1009 |
942 for (var i = 0; i < shapes.length; ++i) { | 1010 for (var i = 0; i < shapes.length; ++i) { |
943 shapes[i].writeToDrawLists(drawListInfos, this.worldMatrix, this); | 1011 shapes[i].writeToDrawLists(remainingDrawListInfos, this.worldMatrix, this); |
944 } | 1012 } |
945 | 1013 |
946 for (var i = 0; i < children.length; ++i) { | 1014 for (var i = 0; i < children.length; ++i) { |
947 children[i].traverse(drawListInfos, this.worldMatrix); | 1015 children[i].traverse(remainingDrawListInfos, this.worldMatrix); |
948 } | 1016 } |
949 }; | 1017 }; |
950 | 1018 |
951 | 1019 |
OLD | NEW |