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_ANGLEAXIS_H_ 00015 #define _FM_ANGLEAXIS_H_ 00016 00021 class FCOLLADA_EXPORT FMAngleAxis 00022 { 00023 public: 00024 FMVector3 axis; 00025 float angle; 00028 FMAngleAxis(); 00029 00033 FMAngleAxis(const FMVector3& _axis, float _angle); 00034 }; 00035 00040 bool operator==(const FMAngleAxis& first, const FMAngleAxis& other); 00041 00042 #endif // _FM_ANGLEAXIS_H_ 00043