Skip to content
Snippets Groups Projects
Select Git revision
  • d55bb545f9af00429b1079b5be0059c41416c447
  • master default
  • dev
3 results

CubeHighlighter.js

Blame
  • CubeHighlighter.js 373 B
    /**
     * Created by aghassaei on 6/2/15.
     */
    
    
    define(['underscore', 'backbone', 'threeModel', 'appState', 'lattice', 'cell', 'three', 'highlighter'],
        function(_, Backbone, three, appState, lattice, DMACell, THREE, Highlighter){
    
        return Highlighter.extend({
    
            _makeGeometry: function(){
                return new THREE.BoxGeometry(1,1,0.01);
            }
        });
    });