Skip to content

Instantly share code, notes, and snippets.

@me2beats
Created December 10, 2019 09:02
Show Gist options
  • Save me2beats/508a553175b65ae1d62536b6adf84704 to your computer and use it in GitHub Desktop.
Save me2beats/508a553175b65ae1d62536b6adf84704 to your computer and use it in GitHub Desktop.
Kivy stencil example
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