Files
HandWritten-Analisys/部署版本/主程序-主函数版本/HWCV-exe/Point.h
yannsy 5d96fe81b6 小修改
小修改,文件名的改进
2017-05-17 20:57:37 +08:00

13 lines
145 B
C++
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
头文件Point.h 图像中的像素点定义
*/
#pragma once
class Point{
private:
public:
int x;
int y;
void setpoint(int a,int b){x=a;y=b;}
};