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
00053
00054
00055 class SICPPSDKDECL OGLLight : public CBase
00056 {
00057 public:
00059 OGLLight();
00060
00062 ~OGLLight();
00063
00067 OGLLight(const CRef& in_ref);
00068
00072 OGLLight(const OGLLight& in_obj);
00073
00078 bool IsA( siClassID in_ClassID) const;
00079
00083 siClassID GetClassID() const;
00084
00090 OGLLight& operator=(const OGLLight& in_obj);
00091
00097 OGLLight& operator=(const CRef& in_ref);
00098
00099
00103 siLightType GetType() const;
00104
00108 CColor GetColor() const;
00109
00113 MATH::CVector3 GetLightPosition() const;
00114
00118 MATH::CVector3 GetLightInterestPosition() const;
00119
00123 double GetConeAngle() const;
00124
00125 private:
00126 OGLLight * operator&() const;
00127 OGLLight * operator&();
00128
00129 };
00130
00131 };
00132
00133 #endif // __XSIOGLLIGHT_H__