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

📄 point2f.h

📁 一个激光谐振腔的稳态过程模拟程序。通过设置波长
💻 H
字号:
// POINT2F.h: interface for the POINT2F class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_POINT2F_H__6BAFD283_8A48_467D_884B_DE78FBC23BC5__INCLUDED_)
#define AFX_POINT2F_H__6BAFD283_8A48_467D_884B_DE78FBC23BC5__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define PI 3.1415926
#include "math.h"
class POINT2F  
{
public:
	float GetRe(float R,float I);
	void Init_point(float a,float b,float c,float d,float e);
	float GetPhrase(float a,float b);
	float GetAmplitude(float a,float b);
	float x;
	float Re,Im;
	float A,P;
	POINT2F();
	virtual ~POINT2F();
};

#endif // !defined(AFX_POINT2F_H__6BAFD283_8A48_467D_884B_DE78FBC23BC5__INCLUDED_)

⌨️ 快捷键说明

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