From 1eba109dfe442420db70a2de71fc8f27c1fc63ba Mon Sep 17 00:00:00 2001
From: Amanda Ghassaei <amandaghassaei@gmail.com>
Date: Fri, 5 Jun 2015 18:32:28 -0700
Subject: [PATCH] organization

---
 js/lattice/Lattice.js | 56 +++++++++++++++++++++++++++----------------
 1 file changed, 35 insertions(+), 21 deletions(-)

diff --git a/js/lattice/Lattice.js b/js/lattice/Lattice.js
index ec0ff0ec..97fca56c 100644
--- a/js/lattice/Lattice.js
+++ b/js/lattice/Lattice.js
@@ -52,9 +52,11 @@ define(['underscore', 'backbone', 'appState', 'globals', 'plist', 'three', 'thre
             this._updateLatticeType(false);
         },
 
-        ////////////////////////////////////////////////////////////////////////////////////
-        ///////////////////////////////ADD/REMOVE CELLS/////////////////////////////////////
-        ////////////////////////////////////////////////////////////////////////////////////
+
+
+
+
+        //add/remove cells
 
         addCellsInRange: function(range){//add a block of cells (extrude)
             this.checkForMatrixExpansion(this.cells, range.max, range.min);
@@ -156,9 +158,11 @@ define(['underscore', 'backbone', 'appState', 'globals', 'plist', 'three', 'thre
             return {min:min, max:max};
         },
 
-        ////////////////////////////////////////////////////////////////////////////////////
-        ///////////////////////////////FILL GEOMETRY////////////////////////////////////////
-        ////////////////////////////////////////////////////////////////////////////////////
+
+
+
+
+        //fill geometry
 
         subtractMesh: function(mesh){
             //todo this is specific to octa face
@@ -209,9 +213,11 @@ define(['underscore', 'backbone', 'appState', 'globals', 'plist', 'three', 'thre
         },
 
 
-        ////////////////////////////////////////////////////////////////////////////////////
-        ///////////////////////////////CELLS ARRAY//////////////////////////////////////////
-        ////////////////////////////////////////////////////////////////////////////////////
+
+
+
+
+        //cells array
 
         checkForMatrixExpansion: function(cells, indicesMax, indicesMin){
 
@@ -310,9 +316,11 @@ define(['underscore', 'backbone', 'appState', 'globals', 'plist', 'three', 'thre
             return false;
         },
 
-        ////////////////////////////////////////////////////////////////////////////////////
-        ////////////////////////////////////EVENTS//////////////////////////////////////////
-        ////////////////////////////////////////////////////////////////////////////////////
+
+
+
+
+        //events
 
         _updatePartType: function(){
             this._iterCells(this.cells, function(cell){
@@ -378,9 +386,11 @@ define(['underscore', 'backbone', 'appState', 'globals', 'plist', 'three', 'thre
             });
         },
 
-        ////////////////////////////////////////////////////////////////////////////////////
-        ///////////////////////////////CONNECTION TYPE//////////////////////////////////////
-        ////////////////////////////////////////////////////////////////////////////////////
+
+
+
+
+        //lattice type
 
         _updateLatticeType: function(loadingFromFile){//do not clear cells if loading from file (cells array contains important metadata)
 
@@ -464,9 +474,11 @@ define(['underscore', 'backbone', 'appState', 'globals', 'plist', 'three', 'thre
             }
         },
 
-        ////////////////////////////////////////////////////////////////////////////////////
-        ////////////////////////////////////UTILS///////////////////////////////////////////
-        ////////////////////////////////////////////////////////////////////////////////////
+
+
+
+
+        //utils
 
         _iterCells: function(cells, callback){
             _.each(cells, function(cellLayer){
@@ -565,9 +577,11 @@ define(['underscore', 'backbone', 'appState', 'globals', 'plist', 'three', 'thre
             return {x:xScale, y:yScale, z:zScale};
         },
 
-        ////////////////////////////////////////////////////////////////////////////////////
-        ///////////////////////////////UI///////////////////////////////////////////////////
-        ////////////////////////////////////////////////////////////////////////////////////
+        
+
+
+
+        //save/load
 
         toJSON: function(){//a minimal toJSON for ui stuff - no need to parse all cells
             return _.omit(this.attributes, ["cells", "nodes"]);//omit makes a copy
-- 
GitLab