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
{
///
/// 凸包点集
///
public List convexHull { get; set; }
///
/// 原点集是否有内凹
///
public bool hasSignificantConcavity { get; set; }
///
/// 原点集内凹程度
///
public double concavityRatio { get; set; }
}
}