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;
		}
	}