Changeset 5380 in orxonox.OLD for branches/2d-recalc/src/lib/graphics/render2D/element_2d.h
- Timestamp:
- Oct 15, 2005, 1:49:17 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2d-recalc/src/lib/graphics/render2D/element_2d.h
r5378 r5380 100 100 101 101 inline void setSize2D(float x, float y) { this->sizeX = x, this->sizeY = y; }; 102 void setSize2Dpx(int x, int y); 102 103 inline void setSizeX2D(float x) { this->sizeX = x; }; 104 void setSizeX2Dpx(int x); 103 105 inline void setSizeY2D(float y) { this->sizeY = y; }; 106 void setSizeY2Dpx(int y); 104 107 inline float getSizeX2D() const { return this->sizeX; }; 108 int getSizeX2Dpx() const; 105 109 inline float getSizeY2D() const { return this->sizeY; }; 110 int getSizeY2Dpx() const; 106 111 107 112 // LIKE PNODE
Note: See TracChangeset
for help on using the changeset viewer.