39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace Pathfinding.Poly2Tri
|
|
{
|
|
// Token: 0x02000018 RID: 24
|
|
[Token(Token = "0x2000018")]
|
|
public class TriangulationUtil
|
|
{
|
|
// Token: 0x06000097 RID: 151 RVA: 0x00002298 File Offset: 0x00000498
|
|
[Token(Token = "0x6000097")]
|
|
[Address(RVA = "0x11AC160", Offset = "0x11AB160", VA = "0x1811AC160")]
|
|
public static bool SmartIncircle(TriangulationPoint pa, TriangulationPoint pb, TriangulationPoint pc, TriangulationPoint pd)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x06000098 RID: 152 RVA: 0x000022B0 File Offset: 0x000004B0
|
|
[Token(Token = "0x6000098")]
|
|
[Address(RVA = "0x11ABF70", Offset = "0x11AAF70", VA = "0x1811ABF70")]
|
|
public static bool InScanArea(TriangulationPoint pa, TriangulationPoint pb, TriangulationPoint pc, TriangulationPoint pd)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x06000099 RID: 153 RVA: 0x000022C8 File Offset: 0x000004C8
|
|
[Token(Token = "0x6000099")]
|
|
[Address(RVA = "0x11AC030", Offset = "0x11AB030", VA = "0x1811AC030")]
|
|
public static Orientation Orient2d(TriangulationPoint pa, TriangulationPoint pb, TriangulationPoint pc)
|
|
{
|
|
return Orientation.CW;
|
|
}
|
|
|
|
// Token: 0x04000043 RID: 67
|
|
[Token(Token = "0x4000043")]
|
|
public static double EPSILON;
|
|
}
|
|
}
|