Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/graphics/camera
diff options
context:
space:
mode:
Diffstat (limited to 'data/graphics/camera')
-rw-r--r--data/graphics/camera6
1 files changed, 3 insertions, 3 deletions
diff --git a/data/graphics/camera b/data/graphics/camera
index 023e04f..85dc606 100644
--- a/data/graphics/camera
+++ b/data/graphics/camera
@@ -37,18 +37,18 @@ while pippy.pygame.next_frame():
if event.type == pygame.QUIT: sys.exit()
elif event.type == pygame.KEYDOWN: sys.exit()
- # angle and scale the image
+ # rotate and scale the image
newImage = pygame.transform.rotozoom(image, angle, scale)
newImageRect = newImage.get_rect()
newImageRect.centerx = screen.get_rect().centerx
newImageRect.centery = screen.get_rect().centery
- # display the angled and scaled image
+ # display the rotated and scaled image
screen.fill(bgcolor)
screen.blit(newImage, newImageRect)
pygame.display.flip()
- # choose a new angle and scale
+ # choose a new rotation angle and scale
angle = angle + 5.0
scale = scale * 0.95