Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
V
vadere
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
110
Issues
110
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
3
Merge Requests
3
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vadere
vadere
Commits
5d2cf664
Commit
5d2cf664
authored
Dec 13, 2016
by
Jakob Schöttl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove old unused code
parent
db76c70e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
8 deletions
+0
-8
VadereGui/src/org/vadere/gui/topographycreator/model/AgentWrapper.java
.../org/vadere/gui/topographycreator/model/AgentWrapper.java
+0
-8
No files found.
VadereGui/src/org/vadere/gui/topographycreator/model/AgentWrapper.java
View file @
5d2cf664
...
...
@@ -27,24 +27,16 @@ public final class AgentWrapper implements ScenarioElement {
/** the wrapped store object. */
private
Agent
store
;
/**
* the shape of this Pedestrian (VCircle). For refection, this attribute has to be changeable
* (not final)
*/
// private VShape shape;
AgentWrapper
(
final
VPoint
position
)
{
this
.
attributes
=
new
AttributesAgent
();
this
.
store
=
new
Pedestrian
(
this
.
attributes
,
new
Random
());
// use a Pedestrian as default
this
.
store
.
setPosition
(
position
);
this
.
store
.
setTargets
(
new
LinkedList
<
Integer
>());
// this.shape = new VCircle(store.position, attributes.getRadius());
}
public
AgentWrapper
(
final
Agent
store
)
{
this
.
attributes
=
store
.
getAttributes
();
this
.
store
=
store
.
clone
();
// this.shape = new VCircle(store.position, attributes.getRadius());
}
private
AgentWrapper
(
final
AgentWrapper
wrapper
)
{
...
...
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