document Bbox_3::scale(factor)

This commit is contained in:
Jane Tournois 2024-03-04 16:09:40 +01:00
parent 272beb678a
commit 3ceaaccfa1
1 changed files with 6 additions and 0 deletions

View File

@ -115,6 +115,12 @@ Bbox_3& operator+=(const Bbox_3 &c);
dilates the bounding box by a specified number of ULP. dilates the bounding box by a specified number of ULP.
*/ */
void dilate(int dist); void dilate(int dist);
/*!
scales the bounding box by a factor, while keeping its center fixed.
*/
void scale(double factor);
/// @} /// @}
}; /* end Bbox_3 */ }; /* end Bbox_3 */