-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef10ba8
commit f35c13c
Showing
3 changed files
with
23 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,44 @@ | ||
# Change log | ||
|
||
## [1.3.0] - 2022-01-24 | ||
## [1.4.0] – 2022-04-23 | ||
|
||
### Features | ||
|
||
- `NativeArray2d<T>` added. Wrapper for two-dimensional `NativeArray<T>`. Support for reading rows in parallel jobs. | ||
- `Native2dTree` added. Currently, only AABB Range query is implemented, NN and k-NN search are TODO. | ||
- `NativeBoundingVolumeTree<AABB>` tree vs. tree intersections implementation using queue. The result is stored in `NativeList<int2>`. | ||
|
||
### Changes | ||
|
||
- Renaming `BoundingVolumeTree<T>` into `NativeBoundingVolumeTree<T>`. Old class is still available, but is marked with Obsolete attribute. Additionally fix some minor typoes in methods names and adds `ReadOnly` substruct. | ||
|
||
## [1.3.0] – 2022-01-24 | ||
|
||
### Features | ||
|
||
- `Span<T>` and `ReadOnlySpan<T>` support for Native Indexed Collections added. | ||
- Debug View for `NativeIndexedArray`, `NativeIndexedList`, and `NativeStack` added. | ||
|
||
## [1.2.0] - 2021-12-09 | ||
## [1.2.0] – 2021-12-09 | ||
|
||
### Features | ||
|
||
- `IdEnumerator<Id>` and `IdValueEnumerator<Id, T>` added. | ||
- Unity version update: 2021.2.5f1. | ||
|
||
## [1.1.0] - 2021-12-04 | ||
## [1.1.0] – 2021-12-04 | ||
|
||
### Features | ||
|
||
- `Id{T}` added. | ||
- `NativeIndexedArray{Id, T}` added. | ||
- `NativeIndexedList{Id, T}` added. | ||
- `NativeAccumulatedProduct{T, Op}` added. | ||
- `Id<T>` added. | ||
- `NativeIndexedArray<Id, T>` added. | ||
- `NativeIndexedList<Id, T>` added. | ||
- `NativeAccumulatedProduct<T, Op>` added. | ||
- `IAbelianOperator` and basic implementations added. | ||
|
||
## [1.0.0] – 2021-11-28 | ||
|
||
### Features | ||
|
||
- `NativeStack{T}` added. | ||
- `BoundingVolumeTree{T}` added. | ||
- `NativeStack<T>` added. | ||
- `BoundingVolumeTree<T>` added. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters