예제 #1
0
 //public bool Contains(ref Vector3 p) {
 //    return boxf.Contains(p.ToVector3f());
 //}
 public AlignedBoxContainmentType Contains(AxisAlignedBox other)
 {
     return(Contains(ref other));
 }
예제 #2
0
 public bool Intersects(ref AxisAlignedBox bb)
 {
     return(boxf.Intersects(bb.boxf));
 }