Axiom.Media.BasicBox.BasicBox C# (CSharp) Method

BasicBox() public method

Define a box from left, top, front, right, bottom and back coordinates.
Note that the left, top, and front edges are included but the right, bottom and back ones are not.
public BasicBox ( int left, int top, int front, int right, int bottom, int back ) : System
left int x value of left edge
top int y value of top edge
front int z value of front edge
right int x value of right edge
bottom int y value of bottom edge
back int z value of back edge
return System
		public BasicBox( int left, int top, int front, int right, int bottom, int back )
		{
			this.left = left;
			this.top = top;
			this.front = front;
			this.right = right;
			this.bottom = bottom;
			this.back = back;
			Debug.Assert( right >= left && bottom >= top && back >= front );
		}

Same methods

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