| 123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CCDCount.MODEL.ShuLiModel
- {
- 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; }
- public double MaxLength { get; set; }
- }
- }
|