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
Need to incorporate the stretch parameter (lambda in the paper) into the cloth max segment length calculation.
Additionally, I'm not sure that taking the minimum of the grid lengths is appropriate. I think it logically should be the maximum length.
Code in question:
ClothConfiguration::ClothConfiguration(float const length_initial, float const width_initial, float const grid_size_initial_guess) ... { ... max_segment_length_ = std::min({grid_size_initial_actual_length, grid_size_initial_actual_width}); }
where ... indicates omitted lines.
...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Need to incorporate the stretch parameter (lambda in the paper) into the cloth max segment length calculation.
Additionally, I'm not sure that taking the minimum of the grid lengths is appropriate. I think it logically should be the maximum length.
Code in question:
where
...
indicates omitted lines.The text was updated successfully, but these errors were encountered: