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

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

Set the rowPitch and slicePitch so that the buffer is laid out consecutive in memory.
public SetConsecutive ( ) : void
Результат void
		public void SetConsecutive()
		{
			rowPitch = Width;
			slicePitch = Width * Height;
		}