コード例 #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)
}