3 Star 8 Fork 2

JesusSlim / vcodereader

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
node.go 208 Bytes
一键复制 编辑 原始数据 按行查看 历史
JesusSlim 提交于 2016-05-06 23:53 . V 1.0
package vcodereader
//坐标点
type Xy struct {
x int
y int
}
func (this *Xy) GetX() int {
return this.x
}
func (this *Xy) GetY() int {
return this.y
}
func NewXy(x, y int) *Xy {
return &Xy{x, y}
}
Go
1
https://gitee.com/JesusSlim/vcodereader.git
git@gitee.com:JesusSlim/vcodereader.git
JesusSlim
vcodereader
vcodereader
master

搜索帮助