Tackling gender and hermaphrodites with an interactive WebGL animation
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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