forked from attcs/Octree
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from LeweC/merge_parent_fork
Merge parent fork
- Loading branch information
Showing
38 changed files
with
7,529 additions
and
2,290 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
BasedOnStyle: Microsoft | ||
|
||
Cpp11BracedListStyle: false | ||
NamespaceIndentation: All | ||
|
||
AccessModifierOffset: -2 | ||
AllowAllParametersOfDeclarationOnNextLine: true | ||
AlignAfterOpenBracket: AlwaysBreak | ||
AlignTrailingComments: Always | ||
AlignOperands: AlignAfterOperator | ||
AlignEscapedNewlines: Left | ||
AlignArrayOfStructures: Right | ||
AllowShortCaseLabelsOnASingleLine: true | ||
AllowShortFunctionsOnASingleLine: InlineOnly | ||
AlwaysBreakTemplateDeclarations: true | ||
|
||
BinPackArguments: false | ||
BinPackParameters: false | ||
BreakConstructorInitializers: BeforeComma | ||
BreakInheritanceList: BeforeColon | ||
ColumnLimit: 150 | ||
ConstructorInitializerIndentWidth: 0 | ||
IndentCaseLabels: false | ||
IndentWidth: 2 | ||
PenaltyBreakBeforeFirstCallParameter: 100 | ||
PenaltyExcessCharacter: 5 | ||
PenaltyReturnTypeOnItsOwnLine: 1000 | ||
PointerAlignment: Left | ||
SpaceAfterTemplateKeyword: false | ||
BreakBeforeTernaryOperators: true | ||
MaxEmptyLinesToKeep: 2 | ||
ContinuationIndentWidth: 2 | ||
AllowShortLambdasOnASingleLine: Inline | ||
|
||
SpacesInContainerLiterals: false |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
unittests/* |
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
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Changelog | ||
|
||
## 2024-03-02 | ||
New features | ||
* New adaptors: Eigen, Unreal Engine, XYZ | ||
* Plane related search and intersection check | ||
* Frustum culling | ||
* User-defined function for Collision detection | ||
* Depth-first search visitor | ||
|
||
Refactorizations | ||
* Clang format and naming changes | ||
* entity_id_type and max_element_type are replaced with size_t | ||
* ID generation is removed | ||
|
||
## 2024-01-16 | ||
* Tolerance is added to the Ray intersection functions | ||
* Bugfixes | ||
|
||
## 2023-01-11 | ||
* Split strategy performace upgrade | ||
* GCC support | ||
* Bugfixes | ||
|
||
## 2022-01-30 | ||
New features | ||
* Container type | ||
* Split strategy for boundingbox-type tree | ||
* Collision detection inside the tree | ||
* Ray intersections | ||
* k-Nearest Neighbors | ||
|
||
Maintenance | ||
* Benchmarks | ||
* Bugfixes | ||
|
||
## 2021-04-26 | ||
* First commits |
Oops, something went wrong.