| 12345678910111213141516171819 |
- /*
- * PolyRectangle.cpp
- * Poly
- *
- * Created by Ivan Safrin on 8/7/08.
- * Copyright 2008 __MyCompanyName__. All rights reserved.
- *
- */
- #include "PolyRectangle.h"
- using namespace Polycode;
- void Rectangle::setRect(Number x, Number y, Number w, Number h) {
- this->x = x;
- this->y = y;
- this->w = w;
- this->h = h;
- }
|