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
The error occurs here:
return geometry.copy( _geometry );
when geometry === _geometry.
geometry === _geometry
The proper solution depends on how you intend the method to be used:
geometry = BufferGeometryUtils.computeTangents( geometry ); // return a new geometry
vs.
BufferGeometryUtils.computeTangents( geometry ); // modify the existing geometry
/ping @donmccurdy
The text was updated successfully, but these errors were encountered:
Ah thanks for the issue report. It looks like there's another issue (#23716 (comment)) to be fixed as well...
Sorry, something went wrong.
donmccurdy
Successfully merging a pull request may close this issue.
The error occurs here:
when
geometry === _geometry
.The proper solution depends on how you intend the method to be used:
vs.
/ping @donmccurdy
The text was updated successfully, but these errors were encountered: