Added setBound() method to Drawable.

This commit is contained in:
Robert Osfield
2003-03-11 21:53:28 +00:00
parent 5ae998dbc2
commit b0dce04063
2 changed files with 8 additions and 0 deletions

View File

@@ -326,3 +326,8 @@ bool Drawable::computeBound() const
return true;
}
void Drawable::setBound(const BoundingBox& bb) const
{
_bbox = bb;
_bbox_computed = true;
}