scripts
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
|
||||
namespace Poly2Tri
|
||||
{
|
||||
// Token: 0x02000010 RID: 16
|
||||
public class PointOnEdgeException : NotImplementedException
|
||||
{
|
||||
// Token: 0x0600009F RID: 159 RVA: 0x0000492E File Offset: 0x00002B2E
|
||||
public PointOnEdgeException(string message, TriangulationPoint a, TriangulationPoint b, TriangulationPoint c)
|
||||
: base(message)
|
||||
{
|
||||
this.A = a;
|
||||
this.B = b;
|
||||
this.C = c;
|
||||
}
|
||||
|
||||
// Token: 0x0400002C RID: 44
|
||||
public readonly TriangulationPoint A;
|
||||
|
||||
// Token: 0x0400002D RID: 45
|
||||
public readonly TriangulationPoint B;
|
||||
|
||||
// Token: 0x0400002E RID: 46
|
||||
public readonly TriangulationPoint C;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user