Пример #1
0
 public bool Equals(PointFloat p)
 {
     return MatchFields(this, p);
 }
Пример #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);
 }
Пример #3
0
 public RectF(float left, float right, float top, float bottom)
 {
     _topLeft     = new PointFloat(left, top);
     _bottomRight = new PointFloat(right, bottom);
 }
Пример #4
0
 public RectF(PointFloat topLeft, PointFloat bottomRight)
 {
     _topLeft     = topLeft;
     _bottomRight = bottomRight;
 }
Пример #5
0
 public RectF(float bottom, float right)
 {
     _topLeft     = new PointFloat();
     _bottomRight = new PointFloat(bottom, right);
 }
Пример #6
0
 private static bool MatchFields(PointFloat a, PointFloat m)
 {
     return(a.X == m.X && a.Y == m.Y);
 }
Пример #7
0
 public RectF(PointFloat topLeft, SizeFloat size)
 {
     _topLeft     = topLeft;
     _bottomRight = new PointFloat(size.Width + topLeft.X - 1, size.Height + topLeft.Y - 1);
 }
Пример #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);
 }
Пример #9
0
 public RectF(float left, float right, float top, float bottom)
 {
     _topLeft = new PointFloat(left, top);
     _bottomRight = new PointFloat(right, bottom);
 }
Пример #10
0
 public RectF(PointFloat topLeft, PointFloat bottomRight)
 {
     _topLeft = topLeft;
     _bottomRight = bottomRight;
 }
Пример #11
0
 public RectF(float bottom, float right)
 {
     _topLeft = new PointFloat();
     _bottomRight = new PointFloat(bottom, right);
 }
Пример #12
0
 public RectF(PointFloat topLeft, SizeFloat size)
 {
     _topLeft = topLeft;
     _bottomRight = new PointFloat(size.Width + topLeft.X - 1, size.Height + topLeft.Y - 1);
 }
Пример #13
0
 public RectF(RectF rect)
 {
     _topLeft = new PointFloat(rect.TopLeft);
     _bottomRight = new PointFloat(rect.BottomRight);
 }
Пример #14
0
 public bool Equals(PointFloat p)
 {
     return(MatchFields(this, p));
 }
Пример #15
0
 private static bool MatchFields(PointFloat a, PointFloat m)
 {
     return (a.X == m.X && a.Y == m.Y);
 }
Пример #16
0
 public RectF(RectF rect)
 {
     _topLeft     = new PointFloat(rect.TopLeft);
     _bottomRight = new PointFloat(rect.BottomRight);
 }
Пример #17
0
 public PointFloat(PointFloat p)
 {
     _x = p.X;
     _y = p.Y;
 }
Пример #18
0
 public PointFloat(PointFloat p)
 {
     _x = p.X;
     _y = p.Y;
 }