Tackling gender and hermaphrodites with an interactive WebGL animation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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