コード例 #1
0
 public bool IntersectsBox(CollisionBox other)
 {
     return (volume.Intersects(other.volume));
 }
コード例 #2
0
 public float? IntersectsBox(CollisionBox other)
 {
     return volume.Intersects(other.volume);
 }
コード例 #3
0
 public bool ContainsBox(CollisionBox other)
 {
     return (volume.Contains(other.volume) == ContainmentType.Contains);
 }