gui
phyllotaxis_analysis.gui Link
MainWindow Link
MainWindow()
Bases: QMainWindow
Main application window for the Phyllotaxis Analyzer.
Source code in src/phyllotaxis_analysis/gui/gui.py
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | |
analyze Link
analyze(user_enter=None, reverse_analysis=False)
Run analysis on the current sequence.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
user_enter
|
When not |
None
|
|
reverse_analysis
|
bool
|
Force reverse analysis even when the checkbox is unchecked. |
False
|
Returns:
| Type | Description |
|---|---|
bool
|
|
Source code in src/phyllotaxis_analysis/gui/gui.py
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 | |
PlotWindow Link
PlotWindow(parent=None)
Bases: QMainWindow
Standalone window used to display a matplotlib figure with save support.
Source code in src/phyllotaxis_analysis/gui/gui.py
57 58 59 60 | |