13 lines
145 B
C++
13 lines
145 B
C++
/*
|
||
头文件:Point.h 图像中的像素点定义
|
||
*/
|
||
#pragma once
|
||
class Point{
|
||
private:
|
||
|
||
public:
|
||
int x;
|
||
int y;
|
||
|
||
void setpoint(int a,int b){x=a;y=b;}
|
||
}; |