@@ -312,7 +312,7 class Axes: | |||
|
312 | 312 | decimationy = None |
|
313 | 313 | |
|
314 | 314 | __MAXNUMX = 200 |
|
315 |
__MAXNUMY = |
|
|
315 | __MAXNUMY = 400 | |
|
316 | 316 | |
|
317 | 317 | __MAXNUMTIME = 500 |
|
318 | 318 | |
@@ -501,15 +501,13 class Axes: | |||
|
501 | 501 | xlen = len(x) |
|
502 | 502 | ylen = len(y) |
|
503 | 503 | |
|
504 | decimationx = int(xlen/self.__MAXNUMX)+1 \ | |
|
505 | if int(xlen/self.__MAXNUMX)>1 else 1 | |
|
506 | decimationy = int(ylen/self.__MAXNUMY) \ | |
|
507 | if int(ylen/self.__MAXNUMY)>1 else 1 | |
|
504 | decimationx = numpy.floor(xlen/self.__MAXNUMX) - 1 if numpy.floor(xlen/self.__MAXNUMX)>1 else 1 | |
|
505 | decimationy = numpy.floor(ylen/self.__MAXNUMY) + 1 | |
|
506 | ||
|
508 | 507 | |
|
509 | 508 | x_buffer = x#[::decimationx] |
|
510 | 509 | y_buffer = y#[::decimationy] |
|
511 | 510 | z_buffer = z#[::decimationx, ::decimationy] |
|
512 | ||
|
513 | 511 | #=================================================== |
|
514 | 512 | |
|
515 | 513 | if self.__firsttime: |
@@ -606,10 +604,8 class Axes: | |||
|
606 | 604 | xlen = len(self.x_buffer) |
|
607 | 605 | ylen = len(y) |
|
608 | 606 | |
|
609 |
decimationx = |
|
|
610 | if int(xlen/self.__MAXNUMX)>1 else 1 | |
|
611 | decimationy = int(ylen/self.__MAXNUMY) \ | |
|
612 | if int(ylen/self.__MAXNUMY)>1 else 1 | |
|
607 | decimationx = numpy.floor(xlen/maxNumX) + 1 | |
|
608 | decimationy = numpy.floor(ylen/maxNumY) + 1 | |
|
613 | 609 | |
|
614 | 610 | x_buffer = self.x_buffer#[::decimationx] |
|
615 | 611 | y_buffer = y#[::decimationy] |
General Comments 0
You need to be logged in to leave comments.
Login now