diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-01-15 18:39:14 +0100 |
---|---|---|
committer | bstoeger <32835590+bstoeger@users.noreply.github.com> | 2021-01-20 08:47:18 +0100 |
commit | 20088576604a3159cc9891bcfea888c15b096a96 (patch) | |
tree | 244e1996c21adb6071346d754e5ac401d726aa15 /Subsurface-mobile.pro | |
parent | faf3e7079ddd680ab0e53a27a7ddc0d863792117 (diff) | |
download | subsurface-20088576604a3159cc9891bcfea888c15b096a96.tar.gz |
statistics: render regression item using QSGNode
Render the confidence area and the regression line into a pixmap
and show that using a QSGNode.
It is unclear whether it is preferred to do it this way or to
triangulate the confidence area into triangles to be drawn by
the shader.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'Subsurface-mobile.pro')
-rw-r--r-- | Subsurface-mobile.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Subsurface-mobile.pro b/Subsurface-mobile.pro index 588e431d4..8e35c835d 100644 --- a/Subsurface-mobile.pro +++ b/Subsurface-mobile.pro @@ -138,6 +138,7 @@ SOURCES += subsurface-mobile-main.cpp \ stats/legend.cpp \ stats/pieseries.cpp \ stats/quartilemarker.cpp \ + stats/regressionitem.cpp \ stats/scatterseries.cpp \ stats/statsaxis.cpp \ stats/statscolors.cpp \ @@ -289,6 +290,7 @@ HEADERS += \ stats/legend.h \ stats/pieseries.h \ stats/quartilemarker.h \ + stats/regressionitem.h \ stats/scatterseries.h \ stats/statsaxis.h \ stats/statscolors.h \ |