Skip to content

Commit

Permalink
[PartIndexUtils] ImmutableMerge ConcatIndices fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aszabo314 committed Jan 12, 2024
1 parent e558c15 commit 07fd932
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 5.3.0-prerelease013
- PartiIndices ImmutableMerge fix

### 5.3.0-prerelease012
- structured point clouds: filtered nodes
- structured point clouds: chunk TryGetPartIndices
Expand Down
2 changes: 1 addition & 1 deletion src/Aardvark.Data.Points.Base/PartIndexUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ object createArray4<T>(IReadOnlyList<T> first, IReadOnlyList<T> second) where T
var (resultIndices, resultCount) = xs.FirstOrDefault();
foreach (var (xIndices, xCount) in xs.Skip(1))
{
ConcatIndices(resultIndices, resultCount, xIndices, xCount);
resultIndices = ConcatIndices(resultIndices, resultCount, xIndices, xCount);
resultCount += xCount;
}
return resultIndices;
Expand Down

0 comments on commit 07fd932

Please sign in to comment.