This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using TriangleNet.Geometry;
namespace TriangleNet.Tools
{
// Token: 0x02000015 RID: 21
public interface IVoronoi
{
// Token: 0x17000022 RID: 34
// (get) Token: 0x060000B8 RID: 184
Point[] Points { get; }
// Token: 0x17000023 RID: 35
// (get) Token: 0x060000B9 RID: 185
ICollection<VoronoiRegion> Regions { get; }
}
}