Skip to content
Snippets Groups Projects
Select Git revision
  • 409c49f057f2d1cdea1fc2856ac20771bc0089d1
  • master default protected
  • LUFA-170418
  • LUFA-151115
  • LUFA-140928
  • LUFA-140302
  • LUFA-130901
  • LUFA-130901-BETA
  • LUFA-130303
  • LUFA-120730
  • LUFA-120730-BETA
  • LUFA-120219
  • LUFA-120219-BETA
  • LUFA-111009
  • LUFA-111009-BETA
  • LUFA-110528
  • LUFA-110528-BETA
17 results

ConfigDescriptor.c

Blame
  • main.js 578 B
    /**
     * Created by aghassaei on 1/7/15.
     */
    
    
    $(function(){
    
        //init web workers
        window.workers = persistentWorkers(8);
    
        //init threeJS and geometry models
        window.three = new ThreeModel();
        window.lattice = new OctaFaceLattice();
    
        //setup ui
        var appState = new AppState({lattice:window.lattice});
        new MenuWrapper({lattice:window.lattice, model:appState});
        new NavBar({model:appState});
    
        //threeJS View
        new ThreeView({model:window.three, lattice:window.lattice, appState:appState});
    
        window.lattice.addCellAtIndex({x:0,y:0,z:0});
    });