Beispiel #1
0
 public void Encapsulate(AABB2 b)
 {
     Encapsulate(b.min, b.max);
 }
Beispiel #2
0
 public static void Reset(AABB2 aabb)
 {
     aabb.Clear();
 }
Beispiel #3
0
 public static void Delete(AABB2 aabb)
 {
 }
Beispiel #4
0
 public AABB2 Encapsulate(AABB2 b)
 {
     return(Encapsulate(b.min, b.max));
 }