{"id":916,"date":"2024-08-30T14:22:43","date_gmt":"2024-08-30T05:22:43","guid":{"rendered":"https:\/\/csharp.ihavenomoney.co.kr\/?p=916"},"modified":"2024-08-30T14:22:43","modified_gmt":"2024-08-30T05:22:43","slug":"python-animation","status":"publish","type":"post","link":"https:\/\/csharp.ihavenomoney.co.kr\/?p=916","title":{"rendered":"python animation"},"content":{"rendered":"\n<figure class=\"wp-block-image size-medium\"><a href=\"https:\/\/csharp.ihavenomoney.co.kr\/wp-content\/uploads\/2024\/08\/Python_sample.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"230\" src=\"https:\/\/csharp.ihavenomoney.co.kr\/wp-content\/uploads\/2024\/08\/Python_sample-300x230.jpg\" alt=\"\" class=\"wp-image-917\" srcset=\"https:\/\/csharp.ihavenomoney.co.kr\/wp-content\/uploads\/2024\/08\/Python_sample-300x230.jpg 300w, https:\/\/csharp.ihavenomoney.co.kr\/wp-content\/uploads\/2024\/08\/Python_sample-768x590.jpg 768w, https:\/\/csharp.ihavenomoney.co.kr\/wp-content\/uploads\/2024\/08\/Python_sample-660x507.jpg 660w, https:\/\/csharp.ihavenomoney.co.kr\/wp-content\/uploads\/2024\/08\/Python_sample.jpg 793w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/figure>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:python decode:true \" >import pygame\n\n# \ucd08\uae30\ud654\npygame.init()\n\n# \ud654\uba74 \ud06c\uae30 \uc124\uc815\nSCREEN_WIDTH = 800\nSCREEN_HEIGHT = 600\n#SCREEN_WIDTH = 1200\n#SCREEN_HEIGHT = 900\nscreen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT))\npygame.display.set_caption(\"Moving Image\")\n\n# \uc774\ubbf8\uc9c0 \ub85c\ub4dc \ubc0f \ud06c\uae30 \uc870\uc815\nimage = pygame.image.load(\"FilledStar.png\")\nimage = pygame.transform.scale(image, (50, 50))\nimage_rect = image.get_rect()\nimage_rect.topleft = (0, 0)\n\n# \uc18d\ub3c4 \uc124\uc815\nspeed = [2, 2]\n\n# \uba54\uc778 \ub8e8\ud504\nrunning = True\nwhile running:\n    for event in pygame.event.get():\n        if event.type == pygame.QUIT:\n            running = False\n\n    # \uc774\ubbf8\uc9c0 \uc704\uce58 \uc5c5\ub370\uc774\ud2b8\n    image_rect = image_rect.move(speed)\n\n    # \ud654\uba74 \uacbd\uacc4 \uccb4\ud06c\n    if image_rect.left &lt; 0 or image_rect.right &gt; SCREEN_WIDTH:\n        speed[0] = -speed[0]\n    if image_rect.top &lt; 0 or image_rect.bottom &gt; SCREEN_HEIGHT:\n        speed[1] = -speed[1]\n\n    # \ud654\uba74 \uadf8\ub9ac\uae30\n    screen.fill((255, 255, 255))\n    screen.blit(image, image_rect)\n    pygame.display.flip()\n\n    # \ud504\ub808\uc784 \uc18d\ub3c4 \uc124\uc815\n    pygame.time.Clock().tick(60)\n\npygame.quit()\n<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[115],"tags":[],"class_list":["post-916","post","type-post","status-publish","format-standard","hentry","category-python"],"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/csharp.ihavenomoney.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/916","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/csharp.ihavenomoney.co.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/csharp.ihavenomoney.co.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/csharp.ihavenomoney.co.kr\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/csharp.ihavenomoney.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=916"}],"version-history":[{"count":1,"href":"https:\/\/csharp.ihavenomoney.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/916\/revisions"}],"predecessor-version":[{"id":918,"href":"https:\/\/csharp.ihavenomoney.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/916\/revisions\/918"}],"wp:attachment":[{"href":"https:\/\/csharp.ihavenomoney.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=916"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/csharp.ihavenomoney.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=916"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/csharp.ihavenomoney.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=916"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}