12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using SkiaSharp;
- namespace FlowChartV2.Libraries
- {
- public class Point
- {
- public int x { get; set; }
- public int y { get; set; }
- public Point(int x = 0, int y = 0)
- {
- this.x = x;
- this.y = y;
- }
- public SKPoint getPoint()
- {
- return new SKPoint(x, y);
- }
- }
- }
|