Anders and Briegel in Python
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
276B

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