Axiom.Media.Image.GetColorAt C# (CSharp) Method

GetColorAt() public method

public GetColorAt ( int x, int y, int z ) : ColorEx
x int
y int
z int
return Axiom.Core.ColorEx
		public ColorEx GetColorAt( int x, int y, int z )
		{
			return PixelConverter.UnpackColor( Format, new IntPtr( this.bufPtr.ToInt32() + PixelUtil.GetNumElemBytes( format ) * ( z * Width * Height + Width * y + x ) ) );
		}