air.h
来自「海洋油污扩散模型的计算机实现。简单了点」· C头文件 代码 · 共 32 行
H
32 行
// Air.h: interface for the CAir class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_AIR_H__92157A81_21EA_4244_A538_1B1F40F54EE3__INCLUDED_)
#define AFX_AIR_H__92157A81_21EA_4244_A538_1B1F40F54EE3__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CAir : public CObject
{
public:
int nBeginX;
int nBeginY;
int nBeginZ;
float fWideZ;
float fWideY;
float fQ;
int m_nDisplayment;
public:
CAir();
virtual ~CAir();
float GetDensity(int x,int y,int z);
void PrintAir(int nBeginX,int nBeginY,int nBeginZ,CClientDC *pDC);
void CHyAirMove();
};
#endif // !defined(AFX_AIR_H__92157A81_21EA_4244_A538_1B1F40F54EE3__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?