@{ * Given a text property and a string, get the bounding box {xmin, xmax, * ymin, ymax} of the rendered string in pixels. The origin of the bounding * box is the anchor point described by the horizontal and vertical * justification text property variables. * Return true on success, false otherwise. */
| 177 | * Return true on success, false otherwise. |
| 178 | */ |
| 179 | bool GetBoundingBox( |
| 180 | vtkTextProperty* tprop, const vtkStdString& str, int bbox[4], int dpi, int backend = Default) |
| 181 | { |
| 182 | return this->GetBoundingBoxInternal(tprop, str, bbox, dpi, backend); |
| 183 | } |
| 184 | ///@} |
| 185 | |
| 186 | ///@{ |
no test coverage detected