瀏覽代碼

Fix wrong object name in Frustrum prototype assignement

Tristan VALCKE 8 年之前
父節點
當前提交
fd0c336a40
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/math/Frustum.js

+ 1 - 1
src/math/Frustum.js

@@ -23,7 +23,7 @@ function Frustum( p0, p1, p2, p3, p4, p5 ) {
 
 }
 
-Object.assign( Euler.prototype, {
+Object.assign( Frustum.prototype, {
 
 	constructor: Frustum,