Anders and Briegel in Python
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

13 lignes
305B

  1. from abp import VisibleGraphState
  2. import numpy as np
  3. s = VisibleGraphState()
  4. for i in range(200):
  5. x = 10*np.cos(np.pi*2*i/60)
  6. y = 10*np.sin(np.pi*2*i/60)
  7. s.add_node(i, {"position": (x, y, i/50.)})
  8. s.act_local_rotation(i, "hadamard")
  9. for i in range(200-1):
  10. s.act_cz(i, i+1)
  11. s.update()