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
enums.h
1#pragma once
2#include "viewshed_export.h"
3
4namespace viewshed
5{
10 enum class DLL_API ValueType
11 {
12 Angle,
13 Elevation,
14 Distance
15 };
16
21 enum DLL_API CellEventPositionType
22 {
23 ENTER = 0,
24 CENTER = 1,
25 EXIT = 2
26 };
27} // namespace viewshed