Axiom.Media.BasicBox.Contains C# (CSharp) Метод

Contains() публичный Метод

Return true if the other box is a part of this one
public Contains ( BasicBox def ) : bool
def BasicBox
Результат bool
		public bool Contains( BasicBox def )
		{
			return ( def.Left >= left && def.top >= top && def.front >= front &&
					def.right <= right && def.bottom <= bottom && def.back <= back );
		}