27 lines
313 B
C
27 lines
313 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Library.h"
|
||
|
|
|
||
|
|
namespace CesiumGeometry {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief An enum describing the x, y, and z axes
|
||
|
|
*/
|
||
|
|
enum class CESIUMGEOMETRY_API Axis {
|
||
|
|
/**
|
||
|
|
* @brief The x-axis
|
||
|
|
*/
|
||
|
|
X,
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief The y-axis
|
||
|
|
*/
|
||
|
|
Y,
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief The z-axis
|
||
|
|
*/
|
||
|
|
Z
|
||
|
|
};
|
||
|
|
} // namespace CesiumGeometry
|