Anders and Briegel in Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
247B

  1. function bootstrap(){
  2. graph.add_node(0, 0, 0);
  3. graph.update();
  4. }
  5. window.onload = function() {
  6. graph.prepare();
  7. materials.prepare();
  8. gui.prepare();
  9. mouse.prepare();
  10. editor.prepare();
  11. bootstrap();
  12. gui.loop();
  13. };