Anders and Briegel in Python
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
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. };