소스 검색

LineSegments2: Fix typo in raycast (#21760)

* fix typo in LineSegments2 raycast

* don't modify class in examples/js

Co-authored-by: Amos <[email protected]>
Amos Byon 4 년 전
부모
커밋
9b978ebad1
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      examples/jsm/lines/LineSegments2.js

+ 2 - 2
examples/jsm/lines/LineSegments2.js

@@ -184,8 +184,8 @@ class LineSegments2 extends Mesh {
 			_start4.fromBufferAttribute( instanceStart, i );
 			_end4.fromBufferAttribute( instanceEnd, i );
 
-			_start.w = 1;
-			_end.w = 1;
+			_start4.w = 1;
+			_end4.w = 1;
 
 			// camera space
 			_start4.applyMatrix4( _mvMatrix );