AVCamBarcode.CGPointExtensions.WithOffsetX C# (CSharp) Method

WithOffsetX() public static method

public static WithOffsetX ( this rect, nfloat dx ) : CGPoint
rect this
dx nfloat
return CGPoint
		public static CGPoint WithOffsetX (this CGPoint rect, nfloat dx)
		{
			rect.X += dx;
			return rect;
		}