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

Method PrintSelf

Rendering/Annotation/vtkSpiderPlotActor.cxx:897–946  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

895
896//------------------------------------------------------------------------------
897void vtkSpiderPlotActor::PrintSelf(ostream& os, vtkIndent indent)
898{
899 this->Superclass::PrintSelf(os, indent);
900
901 os << indent << "Input: " << this->GetInput() << "\n";
902
903 os << indent << "Number Of Independent Variables: " << this->N << "\n";
904 os << indent << "Independent Variables: ";
905 if (this->IndependentVariables == VTK_IV_COLUMN)
906 {
907 os << "Columns\n";
908 }
909 else
910 {
911 os << "Rows\n";
912 }
913
914 os << indent << "Title Visibility: " << (this->TitleVisibility ? "On\n" : "Off\n");
915
916 os << indent << "Title: " << (this->Title ? this->Title : "(none)") << "\n";
917
918 if (this->TitleTextProperty)
919 {
920 os << indent << "Title Text Property:\n";
921 this->TitleTextProperty->PrintSelf(os, indent.GetNextIndent());
922 }
923 else
924 {
925 os << indent << "Title Text Property: (none)\n";
926 }
927
928 os << indent << "Label Visibility: " << (this->LabelVisibility ? "On\n" : "Off\n");
929
930 if (this->LabelTextProperty)
931 {
932 os << indent << "Label Text Property:\n";
933 this->LabelTextProperty->PrintSelf(os, indent.GetNextIndent());
934 }
935 else
936 {
937 os << indent << "Label Text Property: (none)\n";
938 }
939
940 os << indent << "Number of Rings: " << this->NumberOfRings << "\n";
941
942 os << indent << "Legend Visibility: " << (this->LegendVisibility ? "On\n" : "Off\n");
943
944 os << indent << "Legend Actor: " << this->LegendActor << "\n";
945 this->LegendActor->PrintSelf(os, indent.GetNextIndent());
946}
947VTK_ABI_NAMESPACE_END

Callers

nothing calls this directly

Calls 2

GetInputMethod · 0.95
GetNextIndentMethod · 0.80

Tested by

no test coverage detected