16 lines
407 B
C#
16 lines
407 B
C#
using TriangleNet.Geometry;
|
|
|
|
namespace TriangleNet
|
|
{
|
|
public interface IPredicates
|
|
{
|
|
double CounterClockwise(Point a, Point b, Point c);
|
|
|
|
double InCircle(Point a, Point b, Point c, Point p);
|
|
|
|
Point FindCircumcenter(Point org, Point dest, Point apex, ref double xi, ref double eta);
|
|
|
|
Point FindCircumcenter(Point org, Point dest, Point apex, ref double xi, ref double eta, double offconstant);
|
|
}
|
|
}
|