We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gamemath/Source/Player/SoftRenderer2D.cpp
Lines 241 to 245 in 291fee8
여기 주석에 적힌 공통 분모 (uu * vv - uv * uv) 와
공통 분모 (uu * vv - uv * uv)
실제로 값으로 구한 float denominator = udotv * udotv - vdotv * udotu
float denominator = udotv * udotv - vdotv * udotu
의 순서가 뒤바뀐 것 같습니다.
The text was updated successfully, but these errors were encountered:
네 맞습니다. 주석이 잘못 표기되어 있네요. 제보 감사합니다!
Sorry, something went wrong.
No branches or pull requests
gamemath/Source/Player/SoftRenderer2D.cpp
Lines 241 to 245 in 291fee8
여기 주석에 적힌
공통 분모 (uu * vv - uv * uv)
와실제로 값으로 구한
float denominator = udotv * udotv - vdotv * udotu
의 순서가 뒤바뀐 것 같습니다.
The text was updated successfully, but these errors were encountered: