Tackling gender and hermaphrodites with an interactive WebGL animation
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

fluid_gender_1.js 362B

1234567891011121314151617181920
  1. 'use strict';
  2. window.addEventListener('load', function() {
  3. var app = new v3d.App('container', null,
  4. new v3d.SimplePreloader({ container: 'container' }));
  5. var url = 'fluid_gender_1.gltf';
  6. app.load(url, function() {
  7. app.enableControls();
  8. runCode();
  9. });
  10. function runCode() {
  11. // add your code here, e.g. console.log('Hello, World!');
  12. }
  13. });