- Timestamp:
- 09/16/11 16:54:36 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting.Views/3.4/CVRPPDTWView.cs
r6715 r6789 144 144 } else { 145 145 { 146 Point locationPoint;146 Point[] locationPoints = new Point[coordinates.Rows]; 147 147 //just draw customers 148 148 for (int i = 1; i < coordinates.Rows; i++) { 149 locationPoint = new Point(border + ((int)((coordinates[i, 0] - xMin) * xStep)),149 locationPoints[i] = new Point(border + ((int)((coordinates[i, 0] - xMin) * xStep)), 150 150 bitmap.Height - (border + ((int)((coordinates[i, 1] - yMin) * yStep)))); 151 151 152 graphics.FillRectangle(Brushes.Black, locationPoint .X - 3, locationPoint.Y - 3, 6, 6);152 graphics.FillRectangle(Brushes.Black, locationPoints[i].X - 3, locationPoints[i].Y - 3, 6, 6); 153 153 } 154 154 155 locationPoint = new Point(border + ((int)((coordinates[0, 0] - xMin) * xStep)), 155 if (drawFlow) { 156 for (int i = 1; i < coordinates.Rows; i++) { 157 if (demand[i] < 0) { 158 159 graphics.DrawLine(flowPen, locationPoints[pickupDeliveryLocation[i]], locationPoints[i]); 160 } 161 } 162 } 163 164 Point locationPoint = new Point(border + ((int)((coordinates[0, 0] - xMin) * xStep)), 156 165 bitmap.Height - (border + ((int)((coordinates[0, 1] - yMin) * yStep)))); 157 166 graphics.FillEllipse(Brushes.Blue, locationPoint.X - 5, locationPoint.Y - 5, 10, 10);
Note: See TracChangeset
for help on using the changeset viewer.