小修改

小修改,文件名的改进
This commit is contained in:
yannsy
2017-05-17 20:57:37 +08:00
parent 8c0e2f8ff6
commit 5d96fe81b6
29 changed files with 24 additions and 0 deletions

View File

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