Example #1
0
 protected bool Equals(Point43 other)
 {
     return(X == other.X && Y == other.Y);
 }
Example #2
0
 public Line43(Point43 start, Point43 end)
 {
     this.Start = start;
     this.End   = end;
 }
Example #3
0
 // the interface we have
 public static void DrawPoint(Point43 p)
 {
     Console.Write(".");
 }