@@ -501,8 +501,8 class Axes: | |||||
501 | xlen = len(x) |
|
501 | xlen = len(x) | |
502 | ylen = len(y) |
|
502 | ylen = len(y) | |
503 |
|
503 | |||
504 |
decimationx = |
|
504 | decimationx = int(xlen/self.__MAXNUMX) + 1 | |
505 |
decimationy = |
|
505 | decimationy = int(ylen/self.__MAXNUMY) + 1 | |
506 |
|
506 | |||
507 |
|
507 | |||
508 | x_buffer = x#[::decimationx] |
|
508 | x_buffer = x#[::decimationx] | |
@@ -604,8 +604,8 class Axes: | |||||
604 | xlen = len(self.x_buffer) |
|
604 | xlen = len(self.x_buffer) | |
605 | ylen = len(y) |
|
605 | ylen = len(y) | |
606 |
|
606 | |||
607 |
decimationx = |
|
607 | decimationx = int(xlen/maxNumX) + 1 | |
608 |
decimationy = |
|
608 | decimationy = int(ylen/maxNumY) + 1 | |
609 |
|
609 | |||
610 | x_buffer = self.x_buffer#[::decimationx] |
|
610 | x_buffer = self.x_buffer#[::decimationx] | |
611 | y_buffer = y#[::decimationy] |
|
611 | y_buffer = y#[::decimationy] |
General Comments 0
You need to be logged in to leave comments.
Login now