Esempio n. 1
0
 public bool Equals(PointFloat p)
 {
     return MatchFields(this, p);
 }
Esempio n. 2
0
 public RectF(float X, float Y, SizeFloat size)
 {
     _topLeft     = new PointFloat(X, Y);
     _bottomRight = new PointFloat(size.Width + X - 1, size.Height + Y - 1);
 }
Esempio n. 3
0
 public RectF(float left, float right, float top, float bottom)
 {
     _topLeft     = new PointFloat(left, top);
     _bottomRight = new PointFloat(right, bottom);
 }
Esempio n. 4
0
 public RectF(PointFloat topLeft, PointFloat bottomRight)
 {
     _topLeft     = topLeft;
     _bottomRight = bottomRight;
 }
Esempio n. 5
0
 public RectF(float bottom, float right)
 {
     _topLeft     = new PointFloat();
     _bottomRight = new PointFloat(bottom, right);
 }
Esempio n. 6
0
 private static bool MatchFields(PointFloat a, PointFloat m)
 {
     return(a.X == m.X && a.Y == m.Y);
 }
Esempio n. 7
0
 public RectF(PointFloat topLeft, SizeFloat size)
 {
     _topLeft     = topLeft;
     _bottomRight = new PointFloat(size.Width + topLeft.X - 1, size.Height + topLeft.Y - 1);
 }
Esempio n. 8
0
 public RectF(float X, float Y, SizeFloat size)
 {
     _topLeft = new PointFloat(X, Y);
     _bottomRight = new PointFloat(size.Width + X - 1, size.Height + Y - 1);
 }
Esempio n. 9
0
 public RectF(float left, float right, float top, float bottom)
 {
     _topLeft = new PointFloat(left, top);
     _bottomRight = new PointFloat(right, bottom);
 }
Esempio n. 10
0
 public RectF(PointFloat topLeft, PointFloat bottomRight)
 {
     _topLeft = topLeft;
     _bottomRight = bottomRight;
 }
Esempio n. 11
0
 public RectF(float bottom, float right)
 {
     _topLeft = new PointFloat();
     _bottomRight = new PointFloat(bottom, right);
 }
Esempio n. 12
0
 public RectF(PointFloat topLeft, SizeFloat size)
 {
     _topLeft = topLeft;
     _bottomRight = new PointFloat(size.Width + topLeft.X - 1, size.Height + topLeft.Y - 1);
 }
Esempio n. 13
0
 public RectF(RectF rect)
 {
     _topLeft = new PointFloat(rect.TopLeft);
     _bottomRight = new PointFloat(rect.BottomRight);
 }
Esempio n. 14
0
 public bool Equals(PointFloat p)
 {
     return(MatchFields(this, p));
 }
Esempio n. 15
0
 private static bool MatchFields(PointFloat a, PointFloat m)
 {
     return (a.X == m.X && a.Y == m.Y);
 }
Esempio n. 16
0
 public RectF(RectF rect)
 {
     _topLeft     = new PointFloat(rect.TopLeft);
     _bottomRight = new PointFloat(rect.BottomRight);
 }
Esempio n. 17
0
 public PointFloat(PointFloat p)
 {
     _x = p.X;
     _y = p.Y;
 }
Esempio n. 18
0
 public PointFloat(PointFloat p)
 {
     _x = p.X;
     _y = p.Y;
 }