##// END OF EJS Templates
Bug Fixed: Calculo del delta en rango, el valor debe ser un float
Daniel Valdez -
r436:b2a4490a4692
parent child
Show More
@@ -552,7 +552,7 class Axes:
552
552
553 if self.decimationx == None:
553 if self.decimationx == None:
554 deltax = (self.xmax - self.xmin)/maxNumX
554 deltax = (self.xmax - self.xmin)/maxNumX
555 deltay = (self.ymax - self.ymin)/maxNumY
555 deltay = float(self.ymax - self.ymin)/maxNumY
556
556
557 resolutionx = self.x_buffer[2]-self.x_buffer[0]
557 resolutionx = self.x_buffer[2]-self.x_buffer[0]
558 resolutiony = y[1]-y[0]
558 resolutiony = y[1]-y[0]
General Comments 0
You need to be logged in to leave comments. Login now