25 lines
350 B
C#
25 lines
350 B
C#
using TriangleNet.Geometry;
|
|
using TriangleNet.Topology;
|
|
|
|
namespace TriangleNet.Meshing.Data
|
|
{
|
|
internal class BadSubseg
|
|
{
|
|
public Osub subseg;
|
|
|
|
public Vertex org;
|
|
|
|
public Vertex dest;
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return subseg.seg.hash;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"B-SID {subseg.seg.hash}";
|
|
}
|
|
}
|
|
}
|