| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CCDCount.MODEL.ResultModel
- {
- public class ConvexResultClass
- {
- /// <summary>
- /// 凸包点集
- /// </summary>
- public List<Point> convexHull { get; set; }
- /// <summary>
- /// 原点集是否有内凹
- /// </summary>
- public bool hasSignificantConcavity { get; set; }
- /// <summary>
- /// 原点集内凹程度
- /// </summary>
- public double concavityRatio { get; set; }
- }
- }
|