csharp-flutter/Dali.Toolkit/Utils/ParamSegmentation.cs

21 lines
582 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DALI.Utils
{
/// <summary>
/// Define param for each segmentor
/// </summary>
public static class ParamSegmentation
{
//Param for Douglas Peucker segmentor
public const Double ToleranceDouglasPeucker =10;
//Angle Param for Douglas Peucker segmentor, to retreive angular points
public const Double AngularTolerance = 150;
public const Double NbSegmentationMax = 7;
}
}