Viewshed 6.1.0
A C++ library for calculation of viewshed, inverse viewshed and visibility indices for both of those analyses.
Loading...
Searching...
No Matches
rasterposition.h
1#pragma once
2#include "viewshed_export.h"
3
4namespace viewshed
5{
6
11 class DLL_API RasterPosition
12 {
13 public:
14 RasterPosition(){};
15
16 int mRow = -1;
17 int mCol = -1;
18 };
19} // namespace viewshed