12345678910111213 |
- using SkiaSharp;
- using System.Windows;
- namespace PixiEditor.Helpers.Extensions
- {
- public static class SKRectIHelper
- {
- public static Int32Rect ToInt32Rect(this SKRectI rect)
- {
- return new Int32Rect(rect.Left, rect.Top, rect.Width, rect.Height);
- }
- }
- }
|