Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
vadere
vadere
Commits
fa0d8ae4
Commit
fa0d8ae4
authored
Nov 12, 2019
by
Stefan Schuhbaeck
Browse files
fix offset error
parent
18e09ac6
Pipeline
#176510
failed with stages
in 99 minutes and 13 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
VadereManager/src/org/vadere/manager/traci/commandHandler/SimulationCommandHandler.java
View file @
fa0d8ae4
...
...
@@ -61,7 +61,7 @@ public class SimulationCommandHandler extends CommandHandler<SimulationVar>{
Rectangle2D
.
Double
rec
=
state
.
getTopography
().
getBounds
();
VPoint
lowLeft
=
new
VPoint
(
rec
.
getMinX
(),
rec
.
getMinY
());
VPoint
highRight
=
new
VPoint
(
rec
.
getMaxX
(),
rec
.
getMax
X
());
VPoint
highRight
=
new
VPoint
(
rec
.
getMaxX
(),
rec
.
getMax
Y
());
ArrayList
<
VPoint
>
polyList
=
new
ArrayList
<>();
polyList
.
add
(
lowLeft
);
polyList
.
add
(
highRight
);
...
...
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