3 examples of 'pygame draw point' in Python

Every line of 'pygame draw point' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
64def draw_circle(self, position, radius, color, width=0):
65 position = self.map_point(position)
66 r = int(radius*self.scale)
67 width = int(width*self.scale)
68 x, y = position
69
70 if width == 0:
71 pygame.gfxdraw.filled_circle(self.surface, x, y, r, color)
72
73 if r > 1:
74 pygame.gfxdraw.aacircle(self.surface, x, y, r, color)
126def draw(self, surface):
127
128 #surface.fill(BLACK)
129
130 for widget in self.widgets:
131 widget.draw(surface)
313def draw_circle(self, circ, surface):
314 obj = pygame.image.load(circ.get_sprite())
315 obj = pygame.transform.scale(obj, (circ.radius*2, circ.radius*2))
316 obj = pygame.transform.rotate(obj, np.rad2deg(circ.angle))
317 surface.blit(obj, (circ.x-circ.radius,circ.y-circ.radius))
318 return

Related snippets