1
0
Fork 0

Add the ability to extract out an individual elev by array position rather

than only by lat/lon.
This commit is contained in:
curt 2003-03-11 20:20:04 +00:00
parent b3935db989
commit c9757cb753

View file

@ -117,6 +117,10 @@ public:
inline point_list get_corner_node_list() const { return corner_list; }
inline point_list get_fit_node_list() const { return node_list; }
inline int get_point( int col, int row ) {
return in_data[col][row];
}
};