类描述点特征

POINT0.H



// 类描述点特征 POINT0.H 谢春 2001.1.1.

#include<iostream.h> //包含输入输出流
#include<graphics.h> //包含图形库函数
#include<conio.h> //包含输入输出函数
#include<stdlib.h> //包含标准库

class point0
{
int x,y,color;
public: //公有成员
point0() {} //成员函数
point0(int ix,int iy,int c) {x=ix; y=iy; color=c;}
void set_point0(int ix,int iy,int c) {x=ix; y=iy; color=c;}

int get_x() {return x;} //操作代码
int get_y() {return y;}
int get_color() {return color;}

void show(); //点亮函数说明
void hide(); //隐藏函数说明
};

void point0::show() //点亮函数定义
{ //类Point作用域(::)成员函数show()
putpixel(x,y,color);
};

void point0::hide() //隐藏函数定义
{ //类Point作用域(::)成员函数hide()
putpixel(x,y,0);
};