Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. Rectangle {
  2. id: circle
  3. color: "red"
  4. opacity: 0.2
  5. radius: width/2
  6. z: 10000
  7. }
  8.  
  9. // onPositionChanged:
  10.  
  11. circle.x = cx - threshold;
  12. circle.y = cy - threshold;
  13. circle.width = threshold * 2;
  14. circle.height = threshold * 2;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement