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. });