##// END OF EJS Templates
Bug fixed in RTI
Miguel Valdez -
r779:71f3124d602c
parent child
Show More
@@ -586,7 +586,7 class Axes:
586 self.__firsttime = False
586 self.__firsttime = False
587 return
587 return
588
588
589 self.x_buffer = numpy.hstack((self.x_buffer, x[-1]))
589 self.x_buffer = numpy.hstack((self.x_buffer[:-1], x[0], x[-1]))
590 self.z_buffer = numpy.hstack((self.z_buffer, z))
590 self.z_buffer = numpy.hstack((self.z_buffer, z))
591
591
592 if self.decimationx == None:
592 if self.decimationx == None:
General Comments 0
You need to be logged in to leave comments. Login now