From 35b8e77d0754caf83138e5208d1893f6866b8ff8 Mon Sep 17 00:00:00 2001 From: Ruben van de Ven Date: Fri, 11 Apr 2025 21:28:37 +0200 Subject: [PATCH] Render lines with trap_rust for better intepolation algorithms --- trap/stage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trap/stage.py b/trap/stage.py index d360de9..5a89d3c 100644 --- a/trap/stage.py +++ b/trap/stage.py @@ -248,7 +248,7 @@ class DrawnScenario(TrackScenario): lines.append(RenderableLine(points)) if len(self.drawn_predictions): - color = SrgbaColor(0.,0.5,0.,1.-self.lost_factor()) + color = SrgbaColor(0.,0.6,0.,1.-self.lost_factor()) # positions = [RenderablePosition.from_list(pos) for pos in self.drawn_positions] points = [RenderablePoint(pos, color) for pos in self.drawn_predictions[0]] lines.append(RenderableLine(points))