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

📄 circle.cpp

📁 dll的一些学习资料
💻 CPP
字号:
// circul.cpp: implementation of the circul class.
//
//////////////////////////////////////////////////////////////////////
#ifndef DLL_FILE
#define DLL_FILE
#endif
 
#include "circle.h"
#define PI 3.1415926
circle::circle ()
{
   centre = point(0,0);
   radius = 0;
}
float circle::GetArea()
{
	return PI*radius*radius;
}
float circle::GetGirth()
{
    return 2*PI*radius;
}
void circle::SetCentre(const point &centrePoint)
{
	centre = centrePoint;
}
void circle::SetRadius(float r)
{
	radius = r;
}

⌨️ 快捷键说明

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