- Timestamp:
- 12/06/05 17:42:07 (19 years ago)
- Location:
- trunk/VUT/GtpVisibilityPreprocessor/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibilityPreprocessor/src/ViewCell.h
r453 r454 68 68 69 69 float GetSize() {return 0;} 70 void SetSize(float size) {mSize = size;} 71 70 72 /// Leaves which hold this view cell. 71 73 vector<VspKdTreeLeaf *> mVspKdLeaves; 74 75 protected: 76 float mSize; 72 77 }; 73 78 #endif -
trunk/VUT/GtpVisibilityPreprocessor/src/VspKdTree.h
r453 r454 72 72 int nodes; 73 73 // number of splits along each of the axes 74 int splits[ 7];74 int splits[3]; 75 75 // totals number of rays 76 76 int rays; … … 114 114 nodes = 0; 115 115 116 for (int i=0; i< 7; i++)116 for (int i=0; i<3; i++) 117 117 splits[i] = 0; 118 118
Note: See TracChangeset
for help on using the changeset viewer.