Skip to content

Commit

Permalink
libdeng2: Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jan 31, 2013
1 parent a421f6d commit df58f07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/libdeng2/include/de/rectangle.h
Expand Up @@ -44,7 +44,7 @@ class Rectangle
Vector2<Type> size() const { return Vector2<Type>(width(), height()); }
void setWidth(Type w) { bottomRight.x = topLeft.x + w; }
void setHeight(Type h) { bottomRight.y = topLeft.y + h; }
void setSize(const Vector2<Type>& s) { setWidth(s.x); setHeight(s.y); }
void setSize(Vector2<Type> const &s) { setWidth(s.x); setHeight(s.y); }
void include(Corner const &point) {
topLeft = topLeft.min(point);
bottomRight = bottomRight.max(point);
Expand Down

0 comments on commit df58f07

Please sign in to comment.