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