Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/02/2012, 11:51
Avatar de razpeitia
razpeitia
Moderador
 
Fecha de Ingreso: marzo-2005
Ubicación: Monterrey, México
Mensajes: 7.321
Antigüedad: 19 años, 8 meses
Puntos: 1360
Respuesta: ¿Algun IDE para dibujar lineas en mac?

Si es para pygame entonces es más fácil.

Código Python:
Ver original
  1. #!/usr/bin/env python
  2. #coding: UTF-8
  3.  
  4. import pygame
  5.  
  6. size = width, height = 640, 480
  7.  
  8. background = (0, 0, 0)
  9. blue = (0, 0, 255)
  10.  
  11. screen = pygame.display.set_mode(size)
  12. pygame.display.set_caption("Creando lineas")
  13.  
  14.  
  15. clock = pygame.time.Clock()
  16. finish = False
  17. while not finish:
  18.     for event in pygame.event.get():
  19.         if event.type == pygame.QUIT:
  20.             finish = True
  21.         elif event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:
  22.             finish = True
  23.     screen.fill(background)
  24.     pygame.draw.line(screen, blue, (100, 100), (200, 200))
  25.     pygame.display.flip()
  26.     clock.tick(30)