PolyRectangle.cpp 323 B

12345678910111213141516171819
  1. /*
  2. * PolyRectangle.cpp
  3. * Poly
  4. *
  5. * Created by Ivan Safrin on 8/7/08.
  6. * Copyright 2008 __MyCompanyName__. All rights reserved.
  7. *
  8. */
  9. #include "PolyRectangle.h"
  10. using namespace Polycode;
  11. void Rectangle::setRect(Number x, Number y, Number w, Number h) {
  12. this->x = x;
  13. this->y = y;
  14. this->w = w;
  15. this->h = h;
  16. }