上传者: u010991835
|
上传时间: 2021-12-05 22:55:33
|
文件大小: 24KB
|
文件类型: -
I#region Structures
public struct Segment
{
public PointF p;
public PointF q;
public bool contains(SuperPoint point)
{
if (p.Equals(point.P) || q.Equals(point.P))
return true;
return false;
}
}
public struct SuperPoint
{
public PointF P;
public int ID;
public SuperPoint(PointF p, int id)
{
P = p;
ID = id;