Skip to content

Instantly share code, notes, and snippets.

@pavelvasev
Last active October 19, 2016 14:59
Show Gist options
  • Save pavelvasev/0f73163d9bf661ca326fe3ac4c133918 to your computer and use it in GitHub Desktop.
Save pavelvasev/0f73163d9bf661ca326fe3ac4c133918 to your computer and use it in GitHub Desktop.
Scene {
id: sc
backgroundColor: [0,0,0]
Param {
id: xlen
text: "x limit "
value: 50
min: 4
}
Repeater {
model: Math.floor(1 + sc.width / xlen.value)
Rectangle {
width: xlen.value
height: sc.height
x: xlen.value * index * 2
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment