Merge 5f8ea2d841
into a9e5b9bb59
This commit is contained in:
commit
3161b56078
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue