graph.cpp
来自「一个简单的画图程序 可以画点线面等」· C++ 代码 · 共 55 行
CPP
55 行
// Graph.cpp: implementation of the CGraph class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "SmallCAD203.h"
#include "Graph.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CGraph::CGraph()
{
nflag=0;
m_scale=1;
m_color=0;
}
CGraph::~CGraph()
{
}
void CGraph::SetColor(COLORREF color)
{
m_color=color;
}
COLORREF CGraph::GetColor()
{
return m_color;
}
void CGraph::SetScale(int scale)
{
m_scale=scale;
}
int CGraph::GetScale()
{
return m_scale;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?