AVCamBarcode.CGPointExtensions.WithOffsetY C# (CSharp) Method

WithOffsetY() public static method

public static WithOffsetY ( this rect, nfloat dy ) : CGPoint
rect this
dy nfloat
return CGPoint
		public static CGPoint WithOffsetY(this CGPoint rect, nfloat dy)
		{
			rect.Y += dy;
			return rect;
		}
	}