// TouchObject class to store object transformations class TouchObject { public: float x; float y; float width; float height; float rotation; float scale; TouchObject(); TouchObject(float x, float y, float width, float height, float rotation, float scale); };