1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00

added chaining capabilities to analysis.toolbox.Plotter.java

This commit is contained in:
oblonski 2014-04-25 23:28:26 +02:00
parent d017b7c7e1
commit cea63fd5cc

View file

@ -105,16 +105,19 @@ public class Plotter {
private BoundingBox boundingBox = null;
public void setShowFirstActivity(boolean show){
public Plotter setShowFirstActivity(boolean show){
showFirstActivity = show;
return this;
}
public void setLabel(Label label){
public Plotter setLabel(Label label){
this.label = label;
return this;
}
public void setBoundingBox(double minX, double minY, double maxX, double maxY){
public Plotter setBoundingBox(double minX, double minY, double maxX, double maxY){
boundingBox = new BoundingBox(minX,minY,maxX,maxY);
return this;
}
public Plotter(VehicleRoutingProblem vrp) {