xsi_ogllight.h
Go to the documentation of this file.
00001 //*****************************************************************************
00011 //*****************************************************************************
00012 
00013 #if (_MSC_VER > 1000) || defined(SGI_COMPILER)
00014 #pragma once
00015 #endif
00016 
00017 #ifndef __XSIOGLLIGHT_H__
00018 #define __XSIOGLLIGHT_H__
00019 
00020 #include <xsi_base.h>
00021 #include <xsi_math.h>
00022 #include <xsi_color.h>
00023 
00024 namespace XSI {
00025 
00026 //*****************************************************************************
00048 //*****************************************************************************
00049 
00050 class SICPPSDKDECL OGLLight : public CBase
00051 {
00052 public:
00054     OGLLight();
00055 
00057     ~OGLLight();
00058 
00062     OGLLight(const CRef& in_ref);
00063 
00067     OGLLight(const OGLLight& in_obj);
00068 
00073     bool IsA( siClassID in_ClassID) const;
00074 
00078     siClassID GetClassID() const;
00079 
00085     OGLLight& operator=(const OGLLight& in_obj);
00086 
00092     OGLLight& operator=(const CRef& in_ref);
00093 
00094 
00098     siLightType     GetType() const;
00099 
00103     CColor          GetColor() const;
00104 
00108     MATH::CVector3  GetLightPosition() const;
00109 
00113     MATH::CVector3  GetLightInterestPosition() const;
00114 
00118     double          GetConeAngle() const;
00119 
00120     private:
00121     OGLLight * operator&() const;
00122     OGLLight * operator&();
00123 
00124 };
00125 
00126 };
00127 
00128 #endif // __XSIOGLLIGHT_H__