Beispiel #1
0
 public bool Contains(Vector3 point)
 {
     return(Geom3D.Contains(ref this, ref point));
 }
Beispiel #2
0
 public bool Contains(BoundingSphere sphere)
 {
     return(Geom3D.Contains(ref this, ref sphere));
 }
Beispiel #3
0
 public bool Contains(BoundingBox box)
 {
     return(Geom3D.Contains(ref this, ref box));
 }
Beispiel #4
0
		public bool Contains(Vector3 p)
		{
			return Geom3D.Contains(ref this, ref p);
		}