AVCamBarcode.CGPointExtensions.WithOffsetY C# (CSharp) 메소드

WithOffsetY() 공개 정적인 메소드

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