📄 point3f.cpp
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -