aboutsummaryrefslogtreecommitdiff
path: root/main_view.qml
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2015-12-19 22:11:33 +0100
committerSamuel Fadel <samuelfadel@gmail.com>2015-12-19 22:11:33 +0100
commit841ede5c34a5cb001b540ed13a8439dc8df7d2a9 (patch)
tree11970d698ded9c6353895eca37ca662241edda4b /main_view.qml
parente20c03905d6f8418963bd3ce63040e2fe571a6da (diff)
Experimenting using VoronoiSplat as a texture.
Diffstat (limited to 'main_view.qml')
-rw-r--r--main_view.qml14
1 files changed, 4 insertions, 10 deletions
diff --git a/main_view.qml b/main_view.qml
index 62c3a67..9e43137 100644
--- a/main_view.qml
+++ b/main_view.qml
@@ -9,7 +9,7 @@ ApplicationWindow {
id: mainWindow
title: "Projection Manipulation"
visible: true
- minimumWidth: 900
+ minimumWidth: 300
minimumHeight: 600
maximumWidth: minimumWidth
maximumHeight: minimumHeight
@@ -91,18 +91,12 @@ ApplicationWindow {
border.width: 1
border.color: "#cccccc"
- VoronoiSplat {
- id: splat
- objectName: "splat"
- width: 256
- height: 256
- }
-
Scatterplot {
id: plot
objectName: "plot"
- anchors.fill: parent
- visible: false
+ width: 512
+ height: 512
+ anchors.margins: 10
}
}
}