示例#1
0
文件: Segment.cs 项目: Anovi-Soft/KGG
 public Segment(Vector begin, Vector end)
 {
     this.begin = begin;
     this.end = end;
 }
示例#2
0
文件: Vector.cs 项目: Anovi-Soft/KGG
 public Vector(Vector a, Vector b)
 {
     this.x = b.x - a.x;
     this.y = b.y - a.y;
 }