@{ * Given a text property and a string, this function populates the vtkPath * path with the outline of the rendered string. The origin of the path * coordinates is aligned with the anchor point described by the text * property's horizontal and vertical justification options. * Return true on success, false otherwise. */
| 242 | * Return true on success, false otherwise. |
| 243 | */ |
| 244 | bool StringToPath( |
| 245 | vtkTextProperty* tprop, const vtkStdString& str, vtkPath* path, int dpi, int backend = Default) |
| 246 | { |
| 247 | return this->StringToPathInternal(tprop, str, path, dpi, backend); |
| 248 | } |
| 249 | ///@} |
| 250 | |
| 251 | /** |
nothing calls this directly
no test coverage detected