Exemplo n.º 1
0
 public bool Equals(PointFloat p)
 {
     return MatchFields(this, p);
 }
Exemplo n.º 2
0
 public RectF(float left, float right, float top, float bottom)
 {
     _topLeft = new PointFloat(left, top);
     _bottomRight = new PointFloat(right, bottom);
 }
Exemplo n.º 3
0
 private static bool MatchFields(PointFloat a, PointFloat m)
 {
     return (a.X == m.X && a.Y == m.Y);
 }
Exemplo n.º 4
0
 public RectF(PointFloat topLeft, PointFloat bottomRight)
 {
     _topLeft = topLeft;
     _bottomRight = bottomRight;
 }