What is Kivy scatter?

Scatter is used to build interactive widgets that can be translated, rotated and scaled with two or more fingers on a multitouch system . Scatter has its own matrix transformation: the modelview matrix is changed before the children are drawn and the previous matrix is restored when the drawing is finished.

Read more

What is Kivy texture?

Texture is a class that handles OpenGL textures . Depending on the hardware, some OpenGL capabilities might not be available (BGRA support, NPOT support, etc.) You cannot instantiate this class yourself. You must use the function Texture.create() to create a new texture: texture = Texture.

Read more

What is canvas kivy?

The Canvas is the root object used for drawing by a Widget . A kivy canvas is not the place where you paint. Each Widget in Kivy already has a Canvas by default. When you create a widget, you can create all the instructions needed for drawing.

Read more