MCPcopy Create free account
hub / github.com/Kitware/VTK / PrintSelf

Method PrintSelf

Rendering/Core/vtkLabeledContourMapper.cxx:407–432  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

405
406//------------------------------------------------------------------------------
407void 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//------------------------------------------------------------------------------
435int vtkLabeledContourMapper::FillInputPortInformation(int vtkNotUsed(port), vtkInformation* info)

Callers

nothing calls this directly

Calls 2

GetNextIndentMethod · 0.80
GetMTimeMethod · 0.45

Tested by

no test coverage detected