File wellmet/qt_gui/qt_plot.py changed (mode: 100644) (index 15d62bb..697acd0) |
... |
... |
class QtGuiPlot2D(qt_gui.QtGuiWindow): |
48 |
48 |
self.view_items.append(Isocurves(self)) |
self.view_items.append(Isocurves(self)) |
49 |
49 |
self.view_items.append(Boundaries(self)) |
self.view_items.append(Boundaries(self)) |
50 |
50 |
self.view_items.append(ConvexHull2D(self)) |
self.view_items.append(ConvexHull2D(self)) |
|
51 |
|
self.view_items.append(Arrows(self)) |
51 |
52 |
self.view_items.append(Triangulation(self)) |
self.view_items.append(Triangulation(self)) |
52 |
53 |
|
|
53 |
54 |
|
|
|
... |
... |
class Numbers: |
396 |
397 |
|
|
397 |
398 |
|
|
398 |
399 |
|
|
|
400 |
|
class Arrows: |
|
401 |
|
def __init__(self, w): |
|
402 |
|
self.w = w |
|
403 |
|
if self.w.sample_box.nvar == 2: |
|
404 |
|
self.w.box_runned.connect(self.replot) |
|
405 |
|
self.w.space_changed.connect(self.replot) |
|
406 |
|
self.w.redraw_called.connect(self.redraw) |
|
407 |
|
|
|
408 |
|
self.item = QtWidgets.QListWidgetItem('Simplex arrows') |
|
409 |
|
self.item.setFlags(self.item.flags() | QtCore.Qt.ItemIsUserCheckable) |
|
410 |
|
self.item.setCheckState(QtCore.Qt.Unchecked) |
|
411 |
|
self.w.list_view.addItem(self.item) |
|
412 |
|
|
|
413 |
|
self.w.list_view.itemChanged.connect(self.show_slot) |
|
414 |
|
|
|
415 |
|
|
|
416 |
|
def redraw(self): |
|
417 |
|
self.plot_items = [] |
|
418 |
|
self.replot() |
|
419 |
|
|
|
420 |
|
|
|
421 |
|
def show_slot(self, item): |
|
422 |
|
if item is self.item: |
|
423 |
|
if self.item.checkState(): |
|
424 |
|
#for item in self.plot_items: |
|
425 |
|
# item.show() |
|
426 |
|
|
|
427 |
|
#оӵ Мед сюредалоз! |
|
428 |
|
self.replot() |
|
429 |
|
|
|
430 |
|
else: #оӵ Медам сюреда! |
|
431 |
|
for item in self.plot_items: |
|
432 |
|
item.hide() |
|
433 |
|
|
|
434 |
|
|
|
435 |
|
|
|
436 |
|
def replot(self): |
|
437 |
|
""" |
|
438 |
|
on space_chainged |
|
439 |
|
or something like this |
|
440 |
|
when we need to completely |
|
441 |
|
redraw |
|
442 |
|
""" |
|
443 |
|
if self.item.checkState(): |
|
444 |
|
try: #оӵ Мед сюредалоз! |
|
445 |
|
if self.w.space != self.w.sample_box.Tri.tri_space: |
|
446 |
|
return |
|
447 |
|
|
|
448 |
|
result = self.w.sample_box.Tri.perform_sensitivity_analysis() |
|
449 |
|
_gradient, sensitivity, probabilities, depths, vectors = result |
|
450 |
|
|
|
451 |
|
|
|
452 |
|
nmixed = len(vectors) |
|
453 |
|
points = self.w.sample_box.Tri.tri.points |
|
454 |
|
simplices = self.w.sample_box.Tri.tri.simplices |
|
455 |
|
#pos = getattr(self.w.sample_box, self.w.space)[:,:2] |
|
456 |
|
|
|
457 |
|
|
|
458 |
|
plot_widget = self.w.central_widget |
|
459 |
|
|
|
460 |
|
for i in range(min(nmixed, len(self.plot_items))): |
|
461 |
|
simplex_id, vector = vectors.popitem() |
|
462 |
|
centroid = np.mean(points[simplices[simplex_id]], axis=0) |
|
463 |
|
#probability = probabilities[simplex_id] |
|
464 |
|
self.plot_items[i].setStyle(angle=self.get_angle(vector)) |
|
465 |
|
self.plot_items[i].setPos(*centroid) |
|
466 |
|
self.plot_items[i].show() |
|
467 |
|
|
|
468 |
|
if len(vectors): |
|
469 |
|
for simplex_id, vector in vectors.items(): |
|
470 |
|
item = pg.ArrowItem(angle=self.get_angle(vector), |
|
471 |
|
tailLen=40, brush='gray') |
|
472 |
|
plot_widget.addItem(item) |
|
473 |
|
centroid = np.mean(points[simplices[simplex_id]], axis=0) |
|
474 |
|
item.setPos(*centroid) |
|
475 |
|
self.plot_items.append(item) |
|
476 |
|
else: |
|
477 |
|
for i in range(nmixed, len(self.plot_items)): |
|
478 |
|
self.plot_items[i].hide() |
|
479 |
|
|
|
480 |
|
|
|
481 |
|
except BaseException as e: |
|
482 |
|
msg = "error during update" |
|
483 |
|
print(self.__class__.__name__ + ":",msg, repr(e)) |
|
484 |
|
|
|
485 |
|
|
|
486 |
|
|
|
487 |
|
|
|
488 |
|
@staticmethod |
|
489 |
|
def get_angle(vector): |
|
490 |
|
x, y = -vector |
|
491 |
|
return np.rad2deg(np.arccos(x)) * -np.sign(y) |
|
492 |
|
|
|
493 |
|
|
|
494 |
|
|
|
495 |
|
|
|
496 |
|
|
399 |
497 |
|
|
400 |
498 |
class UnitCube: |
class UnitCube: |
401 |
499 |
def __init__(self, w): |
def __init__(self, w): |