------------------------------------------------------------------------------
| 599 | |
| 600 | //------------------------------------------------------------------------------ |
| 601 | void vtkContext2D::DrawStringRect(vtkPoints2D* rect, const vtkStdString& string) |
| 602 | { |
| 603 | vtkVector2f p = this->CalculateTextPosition(rect); |
| 604 | this->DrawString(p.GetX(), p.GetY(), string); |
| 605 | } |
| 606 | |
| 607 | //------------------------------------------------------------------------------ |
| 608 | void vtkContext2D::DrawStringRect(vtkPoints2D* rect, const char* string) |
no test coverage detected