示例#1
0
文件: Line.cs 项目: Umqra/tdd
 public bool Equals(Line other)
 {
     return(Direction.CollinearTo(other.Direction) && other.Contains(A));
 }