repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / src / apps / haiku3d / Camera.cpp
blobf9cb5f7fd441bafe01f164debd379ec34f8c5c25
1 /*
2 * Copyright 2008, Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Alexandre Deckner <alex@zappotek.com>
7 */
9 #include "Camera.h"
12 Camera::Camera(const Vector3& position, const Quaternion& orientation,
13 float fov, float near, float far)
15 fPosition(position),
16 fOrientation(orientation),
17 fFieldOfView(fov),
18 fNear(near),
19 fFar(far)
24 Camera::~Camera()