File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed
Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -27,18 +27,24 @@ namespace gdal
2727namespace viewshed
2828{
2929
30+ /* *
31+ * Container for lines necessary for processing.
32+ */
3033struct Lines
3134{
32- std::vector<double > cur;
33- std::vector<double > result;
34- std::vector<double > prev;
35- std::vector<double > inputData;
36- std::vector< double > pitchMask;
35+ std::vector<double > cur; // !< Current line being processed
36+ std::vector<double > result; // !< Result values for current line
37+ std::vector<double > prev; // !< Height values for previous line
38+ std::vector<double >
39+ pitchMask; // !< Height/indicator values for pitch masking.
3740
41+ // / Constructor
3842 Lines ()
3943 {
4044 }
4145
46+ // / Constructor that initializes to line length
47+ // / \param lineLen Line length.
4248 Lines (size_t lineLen) : cur(lineLen), result(lineLen)
4349 {
4450 }
You can’t perform that action at this time.
0 commit comments