Created
May 3, 2012 22:37
-
-
Save tshirtman/2590079 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from kivy.app import App | |
from kivy.uix.widget import Widget | |
from kivy.properties import ObjectProperty | |
from kivy.graphics import Color, Line | |
class ArrowPointer(Widget): | |
arrow_tip = ObjectProperty(None) | |
def __init__(self, **kwargs): | |
super(ArrowPointer, self).__init__(**kwargs) | |
with self.canvas.after: | |
Color (0, 0, 111) | |
self.arrow_tip = Line() | |
self.bind(pos=self._update_arrow_points) | |
self._update_arrow_points(self, self.pos) | |
def _update_arrow_points(self, object, pos): | |
offset = 50 | |
x,y = pos | |
self.arrow_tip.points = (x - offset, y - offset, x + offset, y + offset) | |
print self.arrow_tip | |
class TestB(App): | |
def build(self): | |
return ArrowPointer() | |
if __name__ == '__main__': | |
TestB().run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment