5g_4dvertex.h
来自「最新visualC++编程200例书籍源码包括对数据库的操作」· C头文件 代码 · 共 40 行
H
40 行
// 5G_4DVertex.h: interface for the C5G_4DVertex class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_5G_4DVERTEX_H__96CC26FA_1E67_401A_BED5_A192840F3A1D__INCLUDED_)
#define AFX_5G_4DVERTEX_H__96CC26FA_1E67_401A_BED5_A192840F3A1D__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class C5G_4DVertex
{
public:
C5G_4DVertex()
{
m_x = 0.0f;
m_y = 0.0f;
m_z = 0.0f;
m_r = 1.0f;
}
C5G_4DVertex(float x, float y, float z, float r)
{
m_x = x;
m_y = y;
m_z = z;
m_r = r;
}
virtual ~C5G_4DVertex();
public:
float m_x;
float m_y;
float m_z;
float m_r;
};
#endif // !defined(AFX_5G_4DVERTEX_H__96CC26FA_1E67_401A_BED5_A192840F3A1D__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?