Hi,
I am trying to understand how imports in Kivy are working. For some modules like Widget we do:
from kivy.uix.widget import Widget
This is clear, we are importing the module from /kivy/uix/widget.py
But for some other modules like Ellipse, Rectangle, and Color I cant find any modules in the path when we import them from. For example we do:
from kivy.graphics import Color, Ellipse, Line
But when I look inside graphics folder I dont see any of these three modules. Can anyone explain (or direct me to source to read) so I can understand how these modules get imported?
Thanks!
Aras