⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gismatrix.h

📁 该程序用来完成蜗杆齿面的计算
💻 H
字号:
// GISMatrix.h: interface for the CMatrix class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MATRIX_H__EF12679D_28E2_4659_9BAC_78DA8B21533D__INCLUDED_)
#define AFX_MATRIX_H__EF12679D_28E2_4659_9BAC_78DA8B21533D__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

//#ifdef TTT_EXPORTS
//#define GOU_EXT_CLASS  __declspec(dllexport) 
//#else
//#define GOU_EXT_CLASS  __declspec(dllimport) 
//#endif

#include "GISVector.h"

//class GOU_EXT_CLASS CMatrix  
class CMatrix  
{
public:
	CMatrix& RotateVectorAboutVectorbyAng(CVector& vec, double angle);
	CMatrix& RotateVectorAboutXbyAng(double angle);
	CMatrix& RotateVectorAboutYbyAng(double angle);
	CMatrix& RotateVectorAboutZbyAng(double angle);
	CMatrix& RotateCoordSysAboutXbyAng(double angle);
	CMatrix& RotateCoordSysAboutYbyAng(double angle);
	CMatrix& RotateCoordSysAboutZbyAng(double angle);
	double mat[3][3];
	CMatrix();
	virtual ~CMatrix();

};

#endif // !defined(AFX_MATRIX_H__EF12679D_28E2_4659_9BAC_78DA8B21533D__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -