예제 #1
0
파일: rect.go 프로젝트: foxundermoon/gform
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)
}