Skip to content

Commit

Permalink
Fixed bug in compound modifier introduced in #283 (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
marip8 authored Jan 30, 2025
1 parent 88a5795 commit be5c64e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noether_tpp/src/mesh_modifiers/compound_modifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ std::vector<pcl::PolygonMesh> CompoundMeshModifier::modify(const pcl::PolygonMes
const MeshModifier::ConstPtr& modifier = modifiers_[i];

std::vector<pcl::PolygonMesh> tmp_meshes;
for (std::size_t j = 0; j < meshes.size(); ++i)
for (std::size_t j = 0; j < meshes.size(); ++j)
{
try
{
Expand Down

0 comments on commit be5c64e

Please sign in to comment.