简体   繁体   English

PyGame / Python:在椭圆上放置一个圆

[英]PyGame/Python: Placing a circle onto an ellipse

I am trying to place multiple circles onto an eclipse and be able to move that circle around the eclipse. 我正在尝试将多个圆放置在日食上,并能够在日食周围移动该圆。 From looking into PyGames examples I have seen that you can rotate a line around an eclipse however cannot figure out how to do with with a circle. 通过查看PyGames示例,我已经看到您可以围绕日食旋转一条直线,但是无法弄清楚如何使用圆圈。

This is the error message I recieve upon trying: 这是我尝试时收到的错误消息:

Traceback (most recent call last):
File "C:/Python32/Attempts/simple_graphics_demo.py", line 66, in <module>
pygame.draw.circle(screen, BLUE, [x, y], 15, 3)
TypeError: integer argument expected, got float

.

import pygame
import math

# Initialize the game engine
pygame.init()

# Colors
BLACK = (0, 0, 0)
WHITE = (255, 255, 255)
GREEN = (0, 255, 0)
RED = (255, 0, 0)
BLUE = (0, 0, 255)

PI = 3.141592653

# Set the height and width of the screen
size = [400, 400]
screen = pygame.display.set_mode(size)

my_clock = pygame.time.Clock()

# Loop until the user clicks the close button.
done = False

angle = 0

while not done:
for event in pygame.event.get():
    if event.type == pygame.QUIT:
        done = True

# Set the screen background
screen.fill(WHITE)

# Dimensions of radar sweep
# Start with the top left at 20,20
# Width/height of 250
box_dimensions = [20, 20, 250, 250]

# Draw the outline of a circle to 'sweep' the line around
pygame.draw.ellipse(screen, GREEN, box_dimensions, 2)

# Draw a black box around the circle
pygame.draw.rect(screen, BLACK, box_dimensions, 2)

# Calculate the x,y for the end point of our 'sweep' based on
# the current angle
x = 125 * math.sin(angle) + 145
y = 125 * math.cos(angle) + 145

# Draw the line from the center at 145, 145 to the calculated
# end spot
pygame.draw.line(screen, GREEN, [145, 145], [x, y], 2)

# Attempt to draw a circle on the radar
pygame.draw.circle(screen, BLUE, [x, y], 15, 3)

# Increase the angle by 0.03 radians
angle = angle + .03

# If we have done a full sweep, reset the angle to 0
if angle > 2 * PI:
    angle = angle - 2 * PI

# Flip the display, wait out the clock tick
pygame.display.flip()
my_clock.tick(60)

# on exit.
pygame.quit()

The math.sin and math.cos functions return floats, and the pos keyword argument to pygame.draw.circle expects integer positions, so you'll want to actually cast your coordinates. math.sinmath.cos函数返回浮点数,而pygame.draw.circle的pos关键字参数期望整数位置,因此您实际上需要转换坐标。 You have a few options for doing this: 您可以执行以下操作:

  • [int(x), int(y)]
  • [math.floor(x), math.floor(y)]
  • [math.ceil(x), math.ceil(y)]

Each comes with slightly different behaviours so you might want to figure out which fits your program best. 每个都有不同的行为,因此您可能想找出最适合您的程序的行为。 (specifically: int and floor work differently for negative numbers -- int rounds towards 0 and floor rounds down, as expected) (具体是: intfloor工作方式不同负数- int舍入到0和floor几轮下来,如预期)

It is not answer for your main question - because you already got answer. 这不是您的主要问题的答案-因为您已经有了答案。

To put more circles use list with angles and for loop to get angle from list (one-by-one) and draw circle. 为了把更多的圆使用清单,角度和for循环等待来自列表(一个接一个)的角度和绘制圆。

import pygame
import math

# === CONSTANTS ===

BLACK = (0, 0, 0)
WHITE = (255, 255, 255)
GREEN = (0, 255, 0)
RED   = (255, 0, 0)
BLUE  = (0, 0, 255)

SIZE = (400, 400)

TWO_PI = 2 * math.pi # you don't have to calculate it in loop

# === MAIN ===

# --- init ---

pygame.init()

screen = pygame.display.set_mode(SIZE)

# --- objects ---

angles = [0, 1, math.pi] # angles for many circles

box_dimensions = [20, 20, 250, 250] # create only once

# --- mainloop ---

clock = pygame.time.Clock()
done = False

while not done:

    # --- events ---

    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            done = True
        elif event.type == pygame.KEYDOWN:
            if event.key == pygame.K_ESCAPE:
                done = True

    # --- draws (without updates) ---

    screen.fill(WHITE)

    pygame.draw.ellipse(screen, GREEN, box_dimensions, 2)

    pygame.draw.rect(screen, BLACK, box_dimensions, 2)

    # draw many circles 
    for a in angles: 

        x = int(125 * math.sin(a)) + 145
        y = int(125 * math.cos(a)) + 145

        pygame.draw.line(screen, GREEN, [145, 145], [x, y], 2)
        pygame.draw.circle(screen, BLUE, [x, y], 15, 3)

    pygame.display.flip()
    clock.tick(60)

    # --- updates (without draws) ---

    # new values for many angles
    for i, a in enumerate(angles):
        a += .03

        if a > TWO_PI:
            a -= TWO_PI

        angles[i] = a

# --- the end ---
pygame.quit()

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM