public MyVector(Rect rect) : this() { arr = new int[4]; arr[0] = rect.GetX(); arr[1] = rect.GetY(); arr[2] = rect.GetX() + rect.GetW(); arr[3] = rect.GetY() + rect.GetH(); }
public Rect(Rect rect) : this(rect.GetX(), rect.GetY(), rect.GetW(), rect.GetH()) { }