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
For large amounts of data, Why does it take more than ten times longer to create BVHModels based on Python than C++?
e.g. the number of points is 176223, the number of triangles is 343688,
m = fcl.BVHModel() m.beginModel(len(points), len(triangles)) m.addSubModel(points, triangles) m.endModel()
std::shared_ptr<BVHModel<AABBd>> mesh_model; mesh_model = std::make_shared<BVHModel<AABBd>>(); mesh_model->beginModel(); mesh_model->addSubModel(points, triangles); mesh_model->endModel();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For large amounts of data, Why does it take more than ten times longer to create BVHModels based on Python than C++?
e.g.
the number of points is 176223, the number of triangles is 343688,
Python
C++
The text was updated successfully, but these errors were encountered: