예제 #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;
 }