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
from kivy.graphics.texture import Texture | |
from kivy.graphics import Rectangle, Color | |
from kivy.uix.widget import Widget | |
from kivy.graphics.opengl import glFinish | |
from kivy.app import App | |
from time import time | |
class RadialGradient(App): | |
def build(self): |
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
from kivy.graphics.texture import Texture | |
from kivy.graphics import Rectangle | |
from kivy.uix.widget import Widget | |
from kivy.app import App | |
class RadialGradient(App): | |
def build(self): | |
w = Widget() | |
center_color = 255, 255, 0 |