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