Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Kivy: Interactive Applications in Python

You're reading from  Kivy: Interactive Applications in Python

Product type Book
Published in Sep 2013
Publisher Packt
ISBN-13 9781783281596
Pages 138 pages
Edition 1st Edition
Languages
Author (1):
Roberto Ulloa Roberto Ulloa
Profile icon Roberto Ulloa

Table of Contents (13) Chapters

Kivy: Interactive Applications in Python
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
1. GUI Basics – Building an Interface 2. Graphics – The Canvas 3. Widget Events – Binding Actions 4. Improving the User Experience 5. Invaders Revenge – An Interactive Multitouch Game Index

Rotating, translating, and scaling


The Rotate, Translate, and Scale classes are the context instructions that are applied to the coordinate space, and indirectly to the vertex instructions. This may bring unexpected results if we forget that the coordinate space is of the size of the screen (actually bigger than that because there is no restriction in the coordinates and we can draw outside of the window), and this might affect all the subsequent components that are drawn. In this section, you will learn more about these problems; then, in the next section, we can analyze them more deeply and you will learn techniques that will facilitate working with the instructions.

Let's start with the new drawing.kv code as follows:

114. # File name: drawing.kv (Rotate, Translate, and Scale)
115. <DrawingSpace>:
116.   pos_hint: {'x':.5, 'y':.5}
117.   canvas:
118.     Rectangle:
119.       source: 'kivy.png'
120.     Rotate:
121.       angle: 90
122.       axis: 0,0,1
123.     Color:
124.   ...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}