Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
vadere
vadere
Commits
bb399a00
Commit
bb399a00
authored
Oct 29, 2019
by
Benedikt Zoennchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fix such that the voronoi diagram works for postVis again.
parent
769b9221
Pipeline
#170452
passed with stages
in 227 minutes and 51 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
VadereGui/src/org/vadere/gui/postvisualization/model/PostvisualizationModel.java
...e/gui/postvisualization/model/PostvisualizationModel.java
+1
-1
No files found.
VadereGui/src/org/vadere/gui/postvisualization/model/PostvisualizationModel.java
View file @
bb399a00
...
...
@@ -286,7 +286,7 @@ public class PostvisualizationModel extends SimulationModel<PostvisualizationCon
public
synchronized
List
<
VPoint
>
getPositions
()
{
List
<
VPoint
>
positions
=
new
ArrayList
<>();
trajectories
.
getAgents
(
getSimTimeInSec
()).
forEach
(
row
->
toPosition
(
row
));
trajectories
.
getAgents
(
getSimTimeInSec
()).
forEach
(
row
->
positions
.
add
(
toPosition
(
row
))
)
;
return
positions
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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