0
私はclamp
を動作させることができません。私はclamp
が別のものの中に矩形を保持すると考えていましたが、次の試行では青いボールを赤い四角の中に入れませんでした。問題はどこだ?Pygame pygame.Rect.clamp
import pygame
from pygame.locals import *
pygame.init()
TV=pygame.display.set_mode((400,400))
pygame.display.set_caption("Rect")
c=pygame.draw.circle(TV,(0,100,0),(150,100),100,1)
c1=pygame.draw.circle(TV,(0,0,200),(250,250),20,1)
r=pygame.draw.rect(TV,(100,0,0),c,1)
c1.clamp(r)
pygame.display.flip()
while True:
for e in pygame.event.get():
if e.type==QUIT:
pygame.quit()
'circle'は' Rect'を返します。 – amirteymuri