예제 #1
0
파일: rect.go 프로젝트: pombredanne/rand
func (c rect) Contains(b gfx.Boundable) bool {
	return b.Bounds().In(math.Rect3(c))
}
예제 #2
0
파일: mesh.go 프로젝트: pombredanne/rand
// Bounds implements the Spatial interface.
func (b Bounds) Bounds() math.Rect3 {
	return math.Rect3(b)
}
예제 #3
0
파일: rect.go 프로젝트: pombredanne/rand
func (c rect) Intersects(b gfx.Boundable) bool {
	return math.Rect3(c).Overlaps(b.Bounds())
}