* @brief Marks all plot layers as dirty and requests a repaint. */
| 584 | * @brief Marks all plot layers as dirty and requests a repaint. |
| 585 | */ |
| 586 | void Widgets::Plot3D::markDirty() |
| 587 | { |
| 588 | m_dirtyGrid = true; |
| 589 | m_dirtyData = true; |
| 590 | m_dirtyBackground = true; |
| 591 | m_dirtyCameraIndicator = true; |
| 592 | update(); |
| 593 | } |
| 594 | |
| 595 | /** |
| 596 | * @brief Marks projection-dependent layers dirty without touching the background. |
no test coverage detected