point3f.cpp

来自「一个激光谐振腔的稳态过程模拟程序。通过设置波长」· C++ 代码 · 共 46 行

CPP
46
字号
// POINT3F.cpp: implementation of the POINT3F class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "Dialog.h"
#include "POINT3F.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

POINT3F::POINT3F()
{
	x = 0;
	y = 0;
	z = 0;
}
/*
POINT3F::POINT3F(float a,float b,double c)
{
	x = a;
	y = b;
	z = c;
}

void POINT3F::Value(float a, float b, double c)
{
	x = a;
	y = b;
	z = c;
}
*/
POINT3F::~POINT3F()
{

}


⌨️ 快捷键说明

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