| 1234567891011121314151617181920212223242526 |
- /*
- * PolyRectangle.h
- * Poly
- *
- * Created by Ivan Safrin on 8/7/08.
- * Copyright 2008 __MyCompanyName__. All rights reserved.
- *
- */
- // @package Math
- #pragma once
- #include "PolyGlobals.h"
- namespace Polycode {
- class _PolyExport Rectangle {
- public:
- Rectangle(){x=0;y=0;w=0;h=0;}
- Rectangle(float px, float py, float pw, float ph){x=px;y=py;w=pw;h=ph;}
- void setRect(float x, float y, float w, float h);
-
- float x;
- float y;
- float w;
- float h;
- };
- }
|