------------------------------------------------------------------------------
| 405 | |
| 406 | //------------------------------------------------------------------------------ |
| 407 | void vtkLabeledContourMapper::PrintSelf(ostream& os, vtkIndent indent) |
| 408 | { |
| 409 | this->Superclass::PrintSelf(os, indent); |
| 410 | |
| 411 | os << indent << "SkipDistance: " << this->SkipDistance << "\n" |
| 412 | << indent << "LabelVisibility: " << (this->LabelVisibility ? "On\n" : "Off\n") << indent |
| 413 | << "NumberOfTextActors: " << this->NumberOfTextActors << "\n" |
| 414 | << indent << "NumberOfUsedTextActors: " << this->NumberOfUsedTextActors << "\n" |
| 415 | << indent << "StencilQuadsSize: " << this->StencilQuadsSize << "\n" |
| 416 | << indent << "StencilQuadIndicesSize: " << this->StencilQuadIndicesSize << "\n" |
| 417 | << indent << "BuildTime: " << this->LabelBuildTime.GetMTime() << "\n" |
| 418 | << indent << "PolyDataMapper:\n"; |
| 419 | this->PolyDataMapper->PrintSelf(os, indent.GetNextIndent()); |
| 420 | os << indent << "TextProperties:\n"; |
| 421 | this->TextProperties->PrintSelf(os, indent.GetNextIndent()); |
| 422 | os << indent << "TextPropertyMapping:"; |
| 423 | if (this->TextPropertyMapping) |
| 424 | { |
| 425 | os << "\n"; |
| 426 | this->TextPropertyMapping->PrintSelf(os, indent.GetNextIndent()); |
| 427 | } |
| 428 | else |
| 429 | { |
| 430 | os << " (nullptr)\n"; |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | //------------------------------------------------------------------------------ |
| 435 | int vtkLabeledContourMapper::FillInputPortInformation(int vtkNotUsed(port), vtkInformation* info) |
nothing calls this directly
no test coverage detected