From a777be3415c8563239cd7560314429fadceb6811 Mon Sep 17 00:00:00 2001 From: Mohcine Chraibi <m.chraibi@fz-juelich.de> Date: Tue, 11 Jun 2019 16:28:41 +0200 Subject: [PATCH] Trnasformation of the train coordinates --- src/TimerCallback.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/TimerCallback.cpp b/src/TimerCallback.cpp index 87e16cb..23cd9ed 100644 --- a/src/TimerCallback.cpp +++ b/src/TimerCallback.cpp @@ -187,11 +187,12 @@ void TimerCallback::Execute(vtkObject *caller, unsigned long eventId, auto txtActor = tab.second->textActor; auto tactor = tab.second->tubeActor; auto tmapper = tab.second->tubeMapper; - - for(auto door: doors) + trainStart = trainStart + trackStart; + trainEnd = trainEnd + trackStart; + for(auto && door: doors) { - doorPoints.push_back(door.GetPoint1()); - doorPoints.push_back(door.GetPoint2()); + doorPoints.push_back(door.GetPoint1() + trainStart); + doorPoints.push_back(door.GetPoint2() + trainStart); }//doors if(once) { -- GitLab