Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00012 #ifndef TGP_H
00013 #define TGP_H
00014
00015 static const uint TGP_HEIGHT_FACTOR = 8;
00016
00018 static const int TGP_FREQUENCY_MAX = 9;
00019
00020 enum Smoothness {
00021 SMOOTHNESS_VERY_SMOOTH = 0,
00022 SMOOTHNESS_SMOOTH = 1,
00023 SMOOTHNESS_ROUGH = 2,
00024 SMOOTHNESS_VERY_ROUGH = 3,
00025 SMOOTHNESS_CEREALLY_ROUGH = 4,
00026 SMOOTHNESS_COMMUTORZ = 5,
00027 SMOOTHNESS_GO_WITH_THE_FLOW = 6,
00028 };
00029
00030 void GenerateTerrainPerlin();
00031
00032 #endif