summaryrefslogtreecommitdiff
path: root/include/ETerrainElements.h
diff options
context:
space:
mode:
authorMirrorbot <mirrorbot@cogarr.net>2025-12-27 17:53:06 -0600
committerMirrorbot <mirrorbot@cogarr.net>2025-12-27 17:53:06 -0600
commit71e94ee161447b84c0eaabf6567f8fa62262cd3e (patch)
tree391064cc6173a6fe75069af2fdc1978af12f623e /include/ETerrainElements.h
downloadirrlicht-71e94ee161447b84c0eaabf6567f8fa62262cd3e.tar.gz
irrlicht-71e94ee161447b84c0eaabf6567f8fa62262cd3e.tar.bz2
irrlicht-71e94ee161447b84c0eaabf6567f8fa62262cd3e.zip
Inital commitHEADmaster
Diffstat (limited to 'include/ETerrainElements.h')
-rw-r--r--include/ETerrainElements.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/include/ETerrainElements.h b/include/ETerrainElements.h
new file mode 100644
index 0000000..5bb48c0
--- /dev/null
+++ b/include/ETerrainElements.h
@@ -0,0 +1,36 @@
+// Copyright (C) 2002-2012 Nikolaus Gebhardt
+// This file is part of the "Irrlicht Engine".
+// For conditions of distribution and use, see copyright notice in irrlicht.h
+
+#ifndef __E_TERRAIN_ELEMENTS_H__
+#define __E_TERRAIN_ELEMENTS_H__
+
+namespace irr
+{
+namespace scene
+{
+
+ //! enumeration for patch sizes specifying the size of patches in the TerrainSceneNode
+ enum E_TERRAIN_PATCH_SIZE
+ {
+ //! patch size of 9, at most, use 4 levels of detail with this patch size.
+ ETPS_9 = 9,
+
+ //! patch size of 17, at most, use 5 levels of detail with this patch size.
+ ETPS_17 = 17,
+
+ //! patch size of 33, at most, use 6 levels of detail with this patch size.
+ ETPS_33 = 33,
+
+ //! patch size of 65, at most, use 7 levels of detail with this patch size.
+ ETPS_65 = 65,
+
+ //! patch size of 129, at most, use 8 levels of detail with this patch size.
+ ETPS_129 = 129
+ };
+
+} // end namespace scene
+} // end namespace irr
+
+#endif
+