示例#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;
 }