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

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

Define a box from left, top, right and bottom coordinates This box will have depth one (front=0 and back=1).
Note that the left, top, and front edges are included but the right, bottom and top ones are not.
public BasicBox ( int left, int top, int right, int bottom ) : System
left int x value of left edge
top int y value of top edge
right int x value of right edge
bottom int y value of bottom edge
Результат System
		public BasicBox( int left, int top, int right, int bottom )
		{
			this.left = left;
			this.top = top;
			this.right = right;
			this.bottom = bottom;
			this.front = 0;
			this.back = 1;
			Debug.Assert( right >= left && bottom >= top && back >= front );
		}

Same methods

BasicBox::BasicBox ( ) : System
BasicBox::BasicBox ( int left, int top, int front, int right, int bottom, int back ) : System