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

Method PrintSelf

Filters/Generic/vtkGenericGeometryFilter.cxx:411–441  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

409
410//------------------------------------------------------------------------------
411void vtkGenericGeometryFilter::PrintSelf(ostream& os, vtkIndent indent)
412{
413 this->Superclass::PrintSelf(os, indent);
414
415 os << indent << "Point Minimum : " << this->GetPointMinimum() << "\n";
416 os << indent << "Point Maximum : " << this->GetPointMaximum() << "\n";
417
418 os << indent << "Cell Minimum : " << this->GetCellMinimum() << "\n";
419 os << indent << "Cell Maximum : " << this->GetCellMaximum() << "\n";
420
421 os << indent << "Extent: \n";
422 os << indent << " Xmin,Xmax: (" << this->Extent[0] << ", " << this->Extent[1] << ")\n";
423 os << indent << " Ymin,Ymax: (" << this->Extent[2] << ", " << this->Extent[3] << ")\n";
424 os << indent << " Zmin,Zmax: (" << this->Extent[4] << ", " << this->Extent[5] << ")\n";
425
426 os << indent << "PointClipping: " << (this->GetPointClipping() ? "On\n" : "Off\n");
427 os << indent << "CellClipping: " << (this->GetCellClipping() ? "On\n" : "Off\n");
428 os << indent << "ExtentClipping: " << (this->GetExtentClipping() ? "On\n" : "Off\n");
429
430 os << indent << "Merging: " << (this->GetMerging() ? "On\n" : "Off\n");
431 if (this->GetLocator())
432 {
433 os << indent << "Locator: " << this->GetLocator() << "\n";
434 }
435 else
436 {
437 os << indent << "Locator: (none)\n";
438 }
439
440 os << indent << "PassThroughCellIds: " << (this->GetPassThroughCellIds() ? "On\n" : "Off\n");
441}
442
443//------------------------------------------------------------------------------
444vtkMTimeType vtkGenericGeometryFilter::GetMTime()

Callers

nothing calls this directly

Calls 1

GetLocatorMethod · 0.45

Tested by

no test coverage detected