| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MvvmScaffoldFrame48.Model.StorageModel.ImageAlgorithm
- {
- public class BoundingRectangleMdoel
- {
- public List<Point> points { get; set;}
- public Point CenterPoint { get; set; }
- public double Width { get; set; }
- public double Height { get; set; }
- public double Angle { get; set; }
- }
- }
|