Files
2026-03-04 10:03:45 +08:00

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);
}
}