| 48 | IE_CORE_DEFINERUNTIMETYPED( Camera ); |
| 49 | |
| 50 | Camera::Camera( const Imath::M44f &transform, |
| 51 | bool orthographic, |
| 52 | const Imath::V2i &resolution, |
| 53 | const Imath::Box2f &frustum, |
| 54 | const Imath::V2f &clippingPlanes |
| 55 | ) |
| 56 | : m_transform( transform ), m_orthographic( orthographic ), m_resolution( resolution ), |
| 57 | m_frustum( frustum ), m_clippingPlanes( clippingPlanes ) |
| 58 | { |
| 59 | } |
| 60 | |
| 61 | void Camera::setTransform( const Imath::M44f &transform ) |
| 62 | { |
no outgoing calls