Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #if 0 //!unfinished!
00009
00010 #ifndef __SP_SCENE_CAMERA_BLENDER_H__
00011 #define __SP_SCENE_CAMERA_BLENDER_H__
00012
00013
00014 #include "Base/spStandard.hpp"
00015 #include "SceneGraph/spSceneCamera.hpp"
00016
00017
00018 namespace sp
00019 {
00020 namespace scene
00021 {
00022
00023
00024 class SP_EXPORT BlenderCamera : public Camera
00025 {
00026
00027 public:
00028
00029 BlenderCamera();
00030 virtual ~BlenderCamera();
00031
00032
00033
00034
00035
00036 inline scene::SceneNode* getRootNode() const
00037 {
00038 return Root_;
00039 }
00040
00041 protected:
00042
00043
00044
00045
00046
00047
00048
00049 scene::SceneNode* Root_;
00050 f32 Distance_;
00051
00052 };
00053
00054
00055 }
00056
00057 }
00058
00059
00060 #endif
00061
00062 #endif
00063
00064
00065
00066