-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
926bb71
commit d75d17b
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
src/main/java/smartcity/accessibility/navigation/mapquestcommunication/Shape.java
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,24 @@ | ||
package smartcity.accessibility.navigation.mapquestcommunication; | ||
|
||
/** | ||
* | ||
* @author yael The class holds a collection of shape points in the route. shape | ||
* points are points in the route that represent turning p[oint in the | ||
* route | ||
*/ | ||
public class Shape { | ||
private Double[] shapePoints; | ||
|
||
public Shape() { | ||
|
||
} | ||
|
||
public Double[] getShapePoints() { | ||
return shapePoints; | ||
} | ||
|
||
public void setShapePoints(Double[] shapePoints) { | ||
this.shapePoints = shapePoints; | ||
} | ||
|
||
} |
d75d17b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the name of this commit is wrong. this commit only add the class shape.