コード例 #1
0
ファイル: rspfMatrix3x3.cpp プロジェクト: vapd-radi/rspf_v2.0
NEWMAT::Matrix rspfMatrix3x3::createRotationMatrix(double angleX,
                                                    double angleY,
                                                    double angleZ,
                                                    rspfCoordSysOrientMode orientationMode)
{
   return (createRotationZMatrix(angleZ, orientationMode)*
           createRotationYMatrix(angleY, orientationMode)*
           createRotationXMatrix(angleX, orientationMode));
}
コード例 #2
0
ファイル: Matrix3x3.cpp プロジェクト: star-labs/star_ossim
pqe::Matrix pqe::Matrix3x3::createRotationMatrix(pqe_float64 angleX,
                                                 pqe_float64 angleY,
                                                 pqe_float64 angleZ,
                                                 pqeCoordSysOrientMode orientationMode)
{
   return (createRotationZMatrix(angleZ, orientationMode)*
           createRotationYMatrix(angleY, orientationMode)*
           createRotationXMatrix(angleX, orientationMode));
}
コード例 #3
0
ファイル: ossimMatrix4x4.cpp プロジェクト: LucHermitte/ossim
NEWMAT::Matrix ossimMatrix4x4::createRotationMatrix(double angleX,
                                                    double angleY,
                                                    double angleZ,
                                                    ossimCoordSysOrientMode orientationMode)
{
  return (createRotationZMatrix(angleZ,
                                orientationMode)*
	  createRotationYMatrix(angleY,
                                orientationMode)*
	  createRotationXMatrix(angleX,
                                orientationMode));
}