示例#1
0
func (this *Rect) IsPointIn(x, y int) bool {
	return w32.PtInRect(&this.rect, x, y)
}
示例#2
0
文件: rect.go 项目: daviddengcn/gform
func (r *Rect) IsPointIn(x, y int) bool {
	return w32.PtInRect((*w32.RECT)(r), x, y)
}