コード例 #1
0
ファイル: rect.go プロジェクト: foxundermoon/gform
func (this *Rect) Intersect(src *Rect) {
	w32.IntersectRect(&this.rect, &this.rect, &src.rect)
}
コード例 #2
0
ファイル: rect.go プロジェクト: daviddengcn/gform
func (r *Rect) Intersect(src *Rect) {
	w32.IntersectRect((*w32.RECT)(r), (*w32.RECT)(r), (*w32.RECT)(src))
}