Skip to content

Commit

Permalink
Fix erroneous lineset iterators from previous bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
EwingKang authored Nov 23, 2023
1 parent 4d00414 commit 9b3623a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/open3d/visualization/gui/PickPointsInteractor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ void PickPointsInteractor::SetPickableGeometry(
points_.insert(points_.end(), mesh->vertices_.begin(),
mesh->vertices_.end());
} else if (lineset) {
points_.insert(points_.end(), cloud->points_.begin(),
points_.insert(points_.end(), lineset->points_.begin(),
lineset->points_.end());
}
else if (tcloud || tmesh || tlineset) {
Expand Down

0 comments on commit 9b3623a

Please sign in to comment.