Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CityDoctor
CityDoctor2
Commits
a33ab428
Commit
a33ab428
authored
Apr 29, 2026
by
Numanoglu
Browse files
Make BVH node fields final
parent
44154e1d
Pipeline
#12398
passed with stage
in 2 minutes and 2 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
CityDoctorParent/CityDoctorModel/src/main/java/de/hft/stuttgart/citydoctor2/datastructure/bht/Node.java
View file @
a33ab428
...
@@ -5,9 +5,9 @@ import java.util.List;
...
@@ -5,9 +5,9 @@ import java.util.List;
public
class
Node
<
E
>
{
public
class
Node
<
E
>
{
private
List
<
Node
<
E
>>
children
=
new
ArrayList
<>();
private
final
List
<
Node
<
E
>>
children
=
new
ArrayList
<>();
private
AABB
aabb
;
private
final
AABB
aabb
;
private
E
element
;
private
final
E
element
;
public
Node
(
E
element
,
AABB
aabb
)
{
public
Node
(
E
element
,
AABB
aabb
)
{
this
.
aabb
=
aabb
;
this
.
aabb
=
aabb
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment