|
@@ -74,11 +74,11 @@ namespace bbiwarg.Graphics
|
|
|
{
|
|
|
for (int i = 1; i < positions.Count; ++i)
|
|
|
{
|
|
|
- OutputImage.drawLineSegment(new LineSegment2D(positions[i - 1], positions[i]), Color.White);
|
|
|
+ OutputImage.drawLineSegment(new LineSegment2D(positions[i - 1], positions[i]), Constants.TouchEventVisualizerLineColor);
|
|
|
}
|
|
|
|
|
|
if (touchPositions.Count != 0)
|
|
|
- OutputImage.fillCircle(positions.Last<Vector2D>().IntX, positions.Last<Vector2D>().IntY, 3, Color.Red);
|
|
|
+ OutputImage.fillCircle(positions.Last<Vector2D>().IntX, positions.Last<Vector2D>().IntY, 3, Constants.TouchEventVisualizerPointColor);
|
|
|
}
|
|
|
}
|
|
|
|