00001 /* 00002 Copyright (C) 2005-2007 Feeling Software Inc. 00003 Portions of the code are: 00004 Copyright (C) 2005-2007 Sony Computer Entertainment America 00005 00006 MIT License: http://www.opensource.org/licenses/mit-license.php 00007 */ 00008 00014 #ifndef _FM_LOOKAT_H_ 00015 #define _FM_LOOKAT_H_ 00016 00021 class FCOLLADA_EXPORT FMLookAt 00022 { 00023 public: 00024 FMVector3 position; 00026 FMVector3 target; 00028 FMVector3 up; 00032 FMLookAt(); 00033 00038 FMLookAt(const FMVector3& _position, const FMVector3& _target, const FMVector3& _up); 00039 }; 00040 00044 bool operator==(const FMLookAt& first, const FMLookAt& other); 00045 00046 #endif // _FM_LOOKAT_H_ 00047