Browse Source

Fix wrong object name in Frustrum prototype assignement

Tristan VALCKE 8 years ago
parent
commit
fd0c336a40
1 changed files with 1 additions and 1 deletions
  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,