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_SKEW_H_ 00015 #define _FM_SKEW_H_ 00016 00021 class FCOLLADA_EXPORT FMSkew 00022 { 00023 public: 00024 FMVector3 rotateAxis; 00025 FMVector3 aroundAxis; 00026 float angle; 00029 FMSkew(); 00030 00035 FMSkew(const FMVector3& rotateAxis, const FMVector3& aroundAxis, float angle); 00036 }; 00037 00041 bool operator==(const FMSkew& first, const FMSkew& other); 00042 00043 #endif // _FM_SKEW_H_ 00044