DunGen  1.0
Dungeongenerator library for Irrlicht
LSystemCommon.h
1 // Copyright (C) 2011-2013 by Maximilian Hönig
2 // This file is part of "DunGen - the Dungeongenerator".
3 // For conditions of distribution and use, see licence.txt provided together with DunGen.
4 
5 #ifndef LSYSTEMCOMMON_H
6 #define LSYSTEMCOMMON_H
7 
8 namespace DunGen
9 {
12  {
13  enum Enum
14  {
15  ANGLE_YAW = 0,
17  ANGLE_ROLL = 2,
21  };
22  };
23 }
24 
25 #endif
The roll angle.
Definition: LSystemCommon.h:17
The start radius in voxels.
Definition: LSystemCommon.h:18
Enum
Definition: LSystemCommon.h:13
The yaw angle.
Definition: LSystemCommon.h:15
The pitch angle.
Definition: LSystemCommon.h:16
The constant in voxels, which is substracted from the radius, when descreasing the radius (applies af...
Definition: LSystemCommon.h:20
The factor, with which the radius is multiplied, when decreasing the radius, has to be in intervall [...
Definition: LSystemCommon.h:19
Parameters of a L-system.
Definition: LSystemCommon.h:11