Ejemplo n.º 1
0
 public void Judge()
 {
     JudgeText.text = "引脚个数为:" + MaxPoint.ToString() + "\n" + "最大线网个数为:" + MaxLineNet + "\n" + "单个线网最大引脚数为:" + MaxSingleNetLinePoint;
 }
Ejemplo n.º 2
0
 public Bounds2D ToBounds2D()
 {
     return(new Bounds2D(MinPoint.ToPoint2D(), MaxPoint.ToPoint2D()));
 }
Ejemplo n.º 3
0
 public override int GetHashCode() =>
 MinPoint.GetHashCode() ^ MaxPoint.GetHashCode();
Ejemplo n.º 4
0
 public Bounds2I ToBounds2I()
 {
     return(new Bounds2I(MinPoint.ToPoint2I(), MaxPoint.ToPoint2I()));
 }