23 lines
410 B
C++
23 lines
410 B
C++
#ifndef HGL_CONEANGLE_INCLUDE
|
|
#define HGL_CONEANGLE_INCLUDE
|
|
|
|
namespace hgl
|
|
{
|
|
class ConeAngle ///锥形角度数据类
|
|
{
|
|
public:
|
|
|
|
float inner; //内部
|
|
float outer; //外部
|
|
|
|
public:
|
|
|
|
ConeAngle()
|
|
{
|
|
inner=0;
|
|
outer=0;
|
|
}
|
|
};
|
|
}//namespace hgl
|
|
#endif//HGL_CONEANGLE_INCLUDE
|