1 /*---------------------------------------------------------------------------*
2   Project:  NintendoWare
3   File:     gfx_CameraViewUpdater.cpp
4 
5   Copyright (C)2009-2011 Nintendo/HAL Laboratory, Inc.  All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain proprietary
8   information of Nintendo and/or its licensed developers and are protected by
9   national and international copyright laws. They may not be disclosed to third
10   parties or copied or duplicated in any form, in whole or in part, without the
11   prior written consent of Nintendo.
12 
13   The content herein is highly confidential and should be handled accordingly.
14 
15   $Revision: 31311 $
16  *---------------------------------------------------------------------------*/
17 
18 #include "precompiled.h"
19 
20 #include <nw/gfx/gfx_CameraViewUpdater.h>
21 
22 namespace nw
23 {
24 namespace gfx
25 {
26 
27 NW_UT_RUNTIME_TYPEINFO_ROOT_DEFINITION(CameraViewUpdater);
28 
29 const math::VEC3 CameraViewUpdater::VIEW_TARGET_POSITION = math::VEC3(0.0f,0.0f,-1.0f);
30 const math::VEC3 CameraViewUpdater::VIEW_UPWARD_VECTOR = math::VEC3(0.0f,1.0f,0.0f);
31 const math::VEC3 CameraViewUpdater::VIEW_VIEW_ROTATE = math::VEC3(0.0f,0.0f,0.0f);
32 const float CameraViewUpdater::VIEW_TWIST = 0.0f;
33 
34 } // namespace gfx
35 } // namespace nw
36