This commit is contained in:
Wenxuan XU 2025-04-23 09:12:59 +08:00 committed by GitHub
commit 3161b56078
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -31,9 +31,9 @@ pFlow::selectorStridedRange::selectAllPointsInRange()
selectedPoints_.clear();
for (uint32 i = begin_; i < end_; i += stride_)
for (uint32 i = begin_; i <= end_; i += stride_)
{
selectedPoints_.push_back(i);
selectedPoints_.push_back(i - 1);
}
}