Changeset 7917 in orxonox.OLD for branches/gui/src/lib/math
- Timestamp:
- May 28, 2006, 2:29:53 PM (19 years ago)
- Location:
- branches/gui/src/lib/math
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/math/rect2D.h
r7915 r7917 24 24 #define __RECT2D_H_ 25 25 26 #include <cmath>27 26 #include "vector2D.h" 28 27 … … 34 33 { 35 34 public: 35 Rect2D() { }; 36 36 Rect2D(float x, float y, float width, float height); 37 37 Rect2D(const Vector2D& topLeft, const Vector2D& bottomRight ); -
branches/gui/src/lib/math/vector2D.h
r7914 r7917 24 24 #define __VECTOR2D_H_ 25 25 26 #include < math.h>26 #include <cmath> 27 27 #include "compiler.h" 28 28
Note: See TracChangeset
for help on using the changeset viewer.