Created
December 10, 2019 09:02
-
-
Save me2beats/508a553175b65ae1d62536b6adf84704 to your computer and use it in GitHub Desktop.
Kivy stencil example
This file contains hidden or 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
from kivy.app import App | |
from kivy.lang import Builder | |
KV = """ | |
Widget | |
canvas.before: | |
StencilPush | |
Color | |
rgba: 0.3, 0.2, 0.4, 1 | |
Rectangle | |
size: 100, 100 | |
Rectangle | |
size: 50, 50 | |
StencilUse | |
Rectangle: | |
size: 100, 100 | |
StencilPop | |
""" | |
class MyApp(App): | |
def build(self): | |
return Builder.load_string(KV) | |
MyApp().run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment