ConvexResultClass.cs 624 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace CCDCount.MODEL.ResultModel
  8. {
  9. public class ConvexResultClass
  10. {
  11. /// <summary>
  12. /// 凸包点集
  13. /// </summary>
  14. public List<Point> convexHull { get; set; }
  15. /// <summary>
  16. /// 原点集是否有内凹
  17. /// </summary>
  18. public bool hasSignificantConcavity { get; set; }
  19. /// <summary>
  20. /// 原点集内凹程度
  21. /// </summary>
  22. public double concavityRatio { get; set; }
  23. }
  24. }