aboutsummaryrefslogtreecommitdiff
path: root/main_view.qml
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-01-15 22:35:13 +0100
committerSamuel Fadel <samuelfadel@gmail.com>2016-01-15 22:35:13 +0100
commit7ad4b526899f8bc764192e88e65306c788a9ed32 (patch)
treeb2e7dae9ceb06b12709ab3b76fc749304c7a2a92 /main_view.qml
parente3a4e5827ada7836468d785b12a57e0022b653e6 (diff)
VoronoiSplat & Scatterplot: splatting is now a separate component.
The change was due to future functionality requirements, this separation provides grater flexibility. As a nice side effect, the cropping bug when first rendering the splat is now gone.
Diffstat (limited to 'main_view.qml')
-rw-r--r--main_view.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/main_view.qml b/main_view.qml
index a0290e1..dc3fe45 100644
--- a/main_view.qml
+++ b/main_view.qml
@@ -102,6 +102,14 @@ ApplicationWindow {
border.width: 1
border.color: "#cccccc"
+ VoronoiSplat {
+ id: splat
+ objectName: "splat"
+ x: parent.x
+ y: parent.y
+ anchors.fill: parent
+ }
+
Scatterplot {
id: plot
objectName: "plot"