1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

sprout/darkroom/cameras/simple_camera.hpp 視点と回転の設定を実装

This commit is contained in:
bolero-MURAKAMI 2011-12-12 17:23:54 +09:00
parent c86fa430c1
commit 3e028096fd
5 changed files with 191 additions and 17 deletions

View file

@ -0,0 +1,27 @@
#ifndef SPROUT_DARKROOM_CAMERAS_ANGLE_OF_VIEW_HPP
#define SPROUT_DARKROOM_CAMERAS_ANGLE_OF_VIEW_HPP
#include <sprout/config.hpp>
#include <sprout/tuple/tuple.hpp>
#include <sprout/darkroom/coords/vector.hpp>
namespace sprout {
namespace darkroom {
namespace cameras {
//
// angle_of_view_reference
//
struct angle_of_view_reference {
public:
enum values {
long_side,
short_side,
width,
height
};
};
} // namespace cameras
} // namespace darkroom
} // namespace sprout
#endif // #ifndef SPROUT_DARKROOM_CAMERAS_ANGLE_OF_VIEW_HPP