00001 #ifndef Impala_Core_Matrix_MatMakeRotate2dDeg_h 00002 #define Impala_Core_Matrix_MatMakeRotate2dDeg_h 00003 00004 #include "Core/Matrix/MatMakeRotate2dRad.h" 00005 00006 namespace Impala 00007 { 00008 namespace Core 00009 { 00010 namespace Matrix 00011 { 00012 00013 00014 inline Mat* 00015 MatMakeRotate2dDeg(double alpha) 00016 { 00017 return MatMakeRotate2dRad(M_PI*alpha/180.0); 00018 } 00019 00020 } // namespace Matrix 00021 } // namespace Core 00022 } // namespace Impala 00023 00024 #endif