Example #1
0
func (this *Rect) Union(src *Rect) {
	w32.UnionRect(&this.rect, &this.rect, &src.rect)
}
Example #2
0
func (r *Rect) Union(src *Rect) {
	w32.UnionRect((*w32.RECT)(r), (*w32.RECT)(r), (*w32.RECT)(src))
}