예제 #1
0
파일: Line.cs 프로젝트: Umqra/tdd
 public bool Equals(Line other)
 {
     return(Direction.CollinearTo(other.Direction) && other.Contains(A));
 }