Axiom.Math.AxisAlignedBox.Scale C# (CSharp) Method

Scale() public method

Scales the size of the box by the supplied factor.
public Scale ( Vector3 factor ) : void
factor Vector3 Factor of scaling to apply to the box.
return void
		public void Scale( Vector3 factor )
		{
			SetExtents( minVector * factor, maxVector * factor );
		}