Skip to content

Commit

Permalink
2020. 10. 20. Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ykoh42 committed Oct 20, 2020
1 parent 4fc05ec commit 950bd17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 4_textured_raycaster.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ screen(screenWidth,screenHeight, 0, "Raycaster");
- 이 값은 텍스처를 적용할 때 어떤 x좌표를 사용해야 하는지 판단할 때 사용할 것입니다.
- 우선 부딪힌 곳의 정확한 x, y값(double)에서 벽의 x, y값(int)을 빼서 판단할 수 있습니다.
- 변수 __wallX__ 는 x면과 부딪힌 경우(side == 1)인 경우 이름에서 유추할 수 있듯 벽의 x좌표가 맞지만, y면에 부딪힌 경우(side == 1)에는 벽의 y좌표가 된다는 점에 유의하세요. 이러나 저러나 텍스처를 적용할 때 __wallX__ 의 값은 텍스처의 x좌표에 사용됩니다.
- 변수 __wallX__ 는 x면과 부딪힌 경우(side == 0)인 경우 이름에서 유추할 수 있듯 벽의 x좌표가 맞지만, y면에 부딪힌 경우(side == 1)에는 벽의 y좌표가 된다는 점에 유의하세요. 이러나 저러나 텍스처를 적용할 때 __wallX__ 의 값은 텍스처의 x좌표에 사용됩니다.
- 코드의 마지막 부분에서 __wallX__ 로, 텍스처의 x좌표를 나타내는 __texX__ 를 계산해 주었습니다.
Expand Down

0 comments on commit 950bd17

Please sign in to comment.