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.

12345678910111213
  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. bootstrap();
  11. gui.loop();
  12. };