Pārlūkot izejas kodu

Fixed misc_lookat example.

Mr.doob 11 gadi atpakaļ
vecāks
revīzija
773ad6d2f9
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      examples/misc_lookat.html

+ 1 - 1
examples/misc_lookat.html

@@ -68,7 +68,7 @@
 				scene.add( sphere );
 
 				var geometry = new THREE.CylinderGeometry( 0, 10, 100, 3 );
-				geometry.applyMatrix( new THREE.Matrix4().makeRotationFromEuler( new THREE.Vector3( Math.PI / 2, Math.PI, 0 ) ) );
+				geometry.applyMatrix( new THREE.Matrix4().makeRotationFromEuler( new THREE.Euler( Math.PI / 2, Math.PI, 0 ) ) );
 
 				var material = new THREE.MeshNormalMaterial();