Anders and Briegel in Python
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

21 行
370B

  1. function bootstrap() {
  2. abj.add_node(0, {
  3. position: new THREE.Vector3(0, 0, 0)
  4. });
  5. abj.add_node(1, {
  6. position: new THREE.Vector3(1, 0, 0)
  7. });
  8. graph.update();
  9. }
  10. window.onload = function() {
  11. graph.prepare();
  12. materials.prepare();
  13. gui.prepare();
  14. mouse.prepare();
  15. editor.prepare();
  16. bootstrap();
  17. gui.loop();
  18. };